是否可以在Polymer 1.0中使用conditional attributes? 我试图在the migration guide和Road to polymer中找到它但没有成功。
我知道在Polymer 1.0中有一个新的conditional template,但我不想复制我的代码。
所以在0.5版本中我们可以有类似的东西:
<input readonly?={{my-boolean-expression}} (...)>
而且,在1.0中,我们应该使用模板吗?
<template is="dom-if" if="{{my-boolean-expression}}">
<input readonly (...)>
</template>
<template is="dom-if" if="!{{my-boolean-expression}}">
<input (...)>
</template>