在使用 Ant Design Vue 练习动态增减表单项时,发现输入框无法绑定值,原因出在 <a-input>
标签的写法上。
错误写法:
<a-input v-model="item.value"></a-input>
正确写法:在 v-model 后面增加 :value
<a-input v-model:value="item.value"></a-input>
在使用 Ant Design Vue 练习动态增减表单项时,发现输入框无法绑定值,原因出在 <a-input>
标签的写法上。
错误写法:
<a-input v-model="item.value"></a-input>
正确写法:在 v-model 后面增加 :value
<a-input v-model:value="item.value"></a-input>