Elements in iteration expect to have ‘v-bind:key’ directives

在使用VScode编辑器vue开发过程中,v-for在Eslint的规则检查下出现报错:Elements in iteration expect to have ‘v-bind:key’ directives

报错

Elements in iteration expect to have ‘v-bind:key’ directives

最初写法

<li v-for=“goods in type0Goods”>

解决方法(常用)

<li v-bind:key=“goods” v-for=“goods in type0Goods”>

Logo

前往低代码交流专区

更多推荐