玉石中是否可以有变量属性名?我想创建一个具有不同属性名称的 mixin:
mixin button_post(test)
button(
#{test.name}='#{test.value}'
)
如果这可以在循环中完成也会很好:
mixin button_post()
button(
each key, value in {one: 'one', two: 'two', three: 'three'}
#{key}='#{value}'
)