在angular-cli项目中使用Scss和Pug(Jade)模板引擎

前端之家收集整理的这篇文章主要介绍了在angular-cli项目中使用Scss和Pug(Jade)模板引擎前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

angular-cli自身支持Scss预处理器,Scss比css更加方便灵活,而且层次清晰,代码整洁。关于Scss:http://www.ruanyifeng.com/blog/2012/06/sass.html

如果想设置项目默认使用Scss可以使用如下命令新建项目:

ng new My_New_Project --style=scss

这样整个项目的默认样式文件就是scss文件格式的了。

参考:http://stackoverflow.com/questions/36220256/angular2-angular-cli-sass-options

Pug(原来叫Jade)是HTML模板引擎,作用与Scss差不多,简化了HTML,书写起来更加方便。关于Pug:https://pugjs.org/api/getting-started.html

但是目前的angular-cli不能通过命令行使项目支持Pug,需要安装pugpug-loader依赖(安装过程中可能有版本不兼容提示,按照要求重新安装就好)。

然后引入pug文件

@Component({
 selector: 'app-root',template: require('pug-loader!./app.component.pug')(),styleUrls: ['app.component.scss']
})

参考链接https://github.com/angular/angular-cli/issues/1886

对于Pug模板中事件绑定可以使用如下方式:

//app.component.pug
div(on-click="func()")

可以避免括号带来的转义的工作。

原文链接:https://www.f2er.com/angularjs/147824.html

猜你在找的Angularjs相关文章