Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Susy SASS 库。我正在编译一个主要的 SASS 文件,它 @imports 各种部分 SASS 文件。在部分内部,我使用 Susy-mixins。我需要为每个部分 SASS 文件 @import "Susy" 吗?这样做的聪明方法是什么?
@import "Susy"在导入所有其他部分之前,您可以只拥有一个。只要您的主文件首先导入 Susy,您的部分文件就可以访问它。
@import "Susy"
@import "Susy"; @import "partials/header"; @import "partials/footer";