[vue/require-v-for-key] Elements in iteration expect to have 'v-bind:key' directives.eslint-plugin-v

 

场景


在写vue项目,写到v-for循环的时候出现了

[vue/require-v-for-key] Elements in iteration expect to have 'v-bind:key' directives.eslint-plugin-v_第1张图片

[vue/require-v-for-key]
Elements in iteration expect to have 'v-bind:key' directives.eslint-plugin-vue

原因是:v-for在Eslint的规则检查下报错。

 

解决


报错中说:Elements in iteration expect to have 'v-bind:key' directives

迭代中的元素希望有“v-bind:key”指令

网上有很多的解决方案是:屏蔽ESLint对vue语法的检查。

我个人认为这种方法不太好,ESLint都检查出来了代码那里写得不好,你还去屏蔽他。

在v-for后面加上:key="index"就可以了。key的值最好是唯一标识,其实用index也有不好的地方。这方面大家自行百度。


[vue/require-v-for-key] Elements in iteration expect to have 'v-bind:key' directives.eslint-plugin-v_第2张图片

你可能感兴趣的:(vue)