最近写移动端项目,用sass写了个非常简单的函数计算:
$ui-width: 750px;
@function px2vw($px) {
@return ($px / $ui-width) * 100vw;
}
然而运行控制台就会打印Recommendation: math.div($px, $ui-width) or calc($px / $ui-width) More info and automated migrator:
虽然不影响项目运行,但看到飘红就不爽 ..
小度搜了一下原因,是因为sass版本的问题,需要降级sass。
删除sass,安装降级版本解决。
yarn remove sass
yarn add sass@1.32.12 -D