vscode报错:Elements in iteration expect to have 'v-bind:key' directives.eslint-plugin-vue

今天在查看项目时,发现了一个vscode的报错:


image.png

报错信息:
[vue/require-v-for-key]
Elements in iteration expect to have 'v-bind:key' directives.eslint-plugin-vue
原因是安装了 ESLint 插件,对vue进行了eslint检查,只需将这个规则检查屏蔽掉即可。
具体操作如下:
文件-首选项-设置-在搜索框中输入:vetur.validation.template–找到右边calidation:template (默认是勾选状态),将前面的对勾去掉即可


image.png

然后重启:
image.png

问题解决

你可能感兴趣的:(vscode报错:Elements in iteration expect to have 'v-bind:key' directives.eslint-plugin-vue)