我想在main.scss中像定义变量一样定义“ path / var1.scss”或“ path / var2.scss”文件名。 在我想在main.scss中使用(导入)此变量之后。
//in the main.scss file
$myVariable = "path/var1.scss";
@import $myVariable;
有可能吗?如何实现呢? 非常感谢。
答案 0 :(得分:0)
在main.scss的顶部,按如下所示导入var.scss:@import "<relative path to file>"
,因此其外观类似于:@import "../app/scss/var.scss"
,具体取决于文件在项目中的位置。然后,在导入后,您可以根据需要使用文件,例如:background-color: $pink
。