我使用Vue2循环遍历数据集,需要访问input elements属性中的索引,如下所示。问题是我没有完全绑定到vue数据,只需要索引。使用冒号语法绑定将在vue数据中查找我不想要/不需要的电子邮件。
目前,我收到以下错误:
Interpolation inside attributes has been removed.
知道怎么做到这一点?
<div>
<div class="row">
<div class="col-md-12" v-for="(item, index) in contact.emails">
<input :value="item.email" name="emails[{{ index }}][email]" />