我正在尝试绑定这样的输入元素:
{{input value=email type="text" placeholder="Enter email" class=emailError:with-error}}
它工作得很好,只要我尝试只分配一个类名“.with-error”。如何分配 2 个类名,所以它将是:“.with-error .second-class”?我知道如何做到这一点:
{{bind-attr class=":secondClass emailError:with-error"}}
但这不适用于输入助手。
谢谢!