Elements in iteration expect to have 'v-bind:key' directives. - Vue

项目中创建 html 样式的时候,运用到了 v-for="item in listData" 但抛出了如下异常:

Elements in iteration expect to have 'v-bind:key' directives.(vue/require-v-for-key)

 

解决办法

使用 v-for 的同时需要添加绑定,即 v-bind:key="xxx" 即可。

v-for="item in listData" v-bind:key="item"

注:v-bind:key="item" 中 item 若为对象,则需绑定其具体一个属性,例如 v-bind:key="item.id"


以上便是此次分享的全部内容,希望能对大家有所帮助!