请告诉我:
在 less 文件中,我有变量:
@example-1-top: value;
@example-1-bottom: value;
我打电话给Mixins,取决于论点:
.example(@depth) when (@example-browser-prefix = false) {
box-shadow: ~"@{example-@{depth}-bottom}, @{example-@{depth}-top}";
}
在 sass 文件中,我有变量:
$example-1-top: value;
$example-1-bottom: value;
我打电话给Mixins,取决于论点:
@mixin z-depth($depth) {
$depth: ???;
@include prefixer(box-shadow, $depth, webkit moz spec);
}
而不是???
我尝试过:
#{$example-#{$depth}-top}, #{$example-#{$depth}-bottom}
$example-#{$depth}-top, $example-#{$depth}-bottom
和...
Syntax error: Undefined variable: "$example-".
其余的返回一个字符串。
请教智慧:)