SassError: 没有名称空间为“ data”的模块

我无法让数学 SASS 库在 Vue 应用程序中工作。它与 Dart Sass 和 Sass-loader 一起编译。Dart Sass 版本是 1.26.3,所以数学模块 应该可以工作。

Module build failed (from ./node_modules/sass-loader/dist/cjs.js):
SassError: There is no module with the namespace "math".


@for $i from 2 through 10
&:nth-child(#{$i}) { transition-duration: 300ms + $i * 50ms - 400ms * math.floor($i / 8); }
^^^^^^^^^^^^^^^^^^
}
34036 次浏览

我想明白了,我需要补充一下

@use 'sass:math';

在文件的顶部。

我可以推荐你一种自动(懒惰)的方法——你可以使用:

$ npm install -g sass-migrator
$ sass-migrator division **/*.scss

发信人: https://sass-lang.com/documentation/breaking-changes/slash-div#automatic-migration