解决Deprecation Warning: $weight: Passing a number without unit % (0) is deprecated.

2 min read

这是因为在Sass中,权重(weight)应该采用具有单位的值而不是纯数字值。为了解决此警告,您可以在$weight变量中添加单位(例如,px或em)或将其更改为具有单位的变量。

例如,将以下代码:

$weight: 0;

改为以下代码:

$weight: 0px;

或者,您可以将$weight更改为具有单位的变量(例如,$weight-px或$weight-em),如下所示:

$weight-px: 0;
$weight-em: 0;

这样就会消除警告。