翡翠に可変属性名を付けることは可能ですか? 属性の名前が異なる 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}'
)