Elements in iteration expect to have 'v-bind:key' directives
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...
·
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”>
更多推荐
已为社区贡献2条内容
所有评论(0)