Skip to content

Commit

Permalink
feat: update sass usage
Browse files Browse the repository at this point in the history
  • Loading branch information
liuzhuan committed Nov 12, 2024
1 parent d6543af commit 9f9d0ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _posts/2024-11-12-sass-lang.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ nav li {

2019 年 10 月 2 日发布的 Dart Sass 1.23.0 引入了[模块系统](https://sass-lang.com/blog/the-module-system-is-launched/)的概念。在此之前的代码复用主要依靠 `@import` 指令,但是 `@import` 指令不好用,它会把全部成员引入到全局作用域,难以区分成员来源,无法避免命名冲突,因此不得不设计新的模块系统代替它。

利用模块,可以把不同的功能划分到不同文件,并使用 `@use` 指令引用。引入到模块有自己的命名空间,因此可以方便区分来源,也能避免命名冲突。
利用模块,可以把不同的功能划分到不同文件,并使用 `@use` 指令引用。模块有自己的命名空间,因此可以方便区分来源,也能避免命名冲突。

源代码:

Expand Down

0 comments on commit 9f9d0ac

Please sign in to comment.