从手写笔变量评估规则

Evaluate rule from stylus variable

我想要 hideshow shorthand 来写这样的东西:

hide = 'display: none !important'
show = 'display: block !important'

.my-button
    {show}
    +mobile()
        {hide}

当前的 Stylus 语法中有类似的东西吗?

您可以为此使用 @block。参见 an example