手写笔。如何在哈希名称中使用变量
Stylus. How to use variable in the name of hashes
作为哈希名称中的替代变量
some_hashes = {
some_hashes_value: some_variable
}
some_mixin(some_argument, some_argument_2)
margin: {some_argument}[some_hashes_value] + some_argument_2 // false
margin: {some_argument}.some_hashes_value + some_argument_2 // false
.foo
some_mixin 10
需要“:”,得到“}”
您可以在这种情况下使用 lookup bif。
作为哈希名称中的替代变量
some_hashes = {
some_hashes_value: some_variable
}
some_mixin(some_argument, some_argument_2)
margin: {some_argument}[some_hashes_value] + some_argument_2 // false
margin: {some_argument}.some_hashes_value + some_argument_2 // false
.foo
some_mixin 10
需要“:”,得到“}”
您可以在这种情况下使用 lookup bif。