Angular-cli建立的项目能够选择css的预处理scss做为style文件的默认预处理格式。scss能够设置变量,函数,同时使用继承,混入等方法达到更方便,通用的效果。css
一般状况下,咱们会设计一些通用的变量在各个地方使用,如何将通用变量的文件一次引入,全局使用呢?html
解决办法: 这个方法有问题,彷佛在angular-cli7 上不起做用json
// 通用变量文件 _variables.scss
$red: #e0301e;
// 全局scss文件 styles.scss
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/angular-toolkits",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json",
"assets": [
"src/favicon.ico",
"src/assets"
],
"stylePreprocessorOptions": { "includePaths": [ "src/assets/scss" ], "styles": [ "src/styles.scss" ],
"scripts": []
},
// 某个component使用$red变量 sde-menu-items.scss
button {
background-color: $red
}
方法二:app
您只须要添加更多配置,所以在声明全局变量的地方,您须要将其包装起来:root{}
。因此src/styles/settings/_variables.scss
。函数
:root { --blue: #00b; // or any global you wish to share with components }
而后,当您在SCSS中使用它们时,您将须要像这样访问它们。ui
.example-class { background-color: var(--blue) }
这就是我当前的项目如何处理全局变量,它彷佛运做良好。这将消除在您使用的每一个scss文件中导入变量的须要。this