解决方法:
因为vue 2.x不支持对属性使用插值{{}}的方式赋值,所以要使用v-bind指令(或简写“:”)来指定属性。
- v-bind指令
v-bind:id="item.id"
- v-bind简写指令:
:id="item.id"
原文地址:https://www.cnblogs.com/XiaoYEBLog/p/11546343.html
时间: 2024-10-12 17:19:23
解决方法:
因为vue 2.x不支持对属性使用插值{{}}的方式赋值,所以要使用v-bind指令(或简写“:”)来指定属性。
v-bind:id="item.id"
:id="item.id"
原文地址:https://www.cnblogs.com/XiaoYEBLog/p/11546343.html