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,需要安装pug
和 pug-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()")
可以避免括号带来的转义的工作。