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

Eslint规则检查显示如下:

报错信息如下:

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

这是因为我们安装了ESLint插件,对vue进行了eslint检查,只需将这个规则检查屏蔽掉即可,具体操作如下:
文件–》首选项–》设置–》在搜索框中输入:vetur.validation.template–》找到vetur.validation.template:true–》将vetur.validation.template:true在右栏框中进行重置为false就ok了。

关闭Vue Eslint语法检查

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-06-03
  • 2021-05-05
  • 2021-04-03
猜你喜欢
  • 2022-01-05
  • 2021-11-19
  • 2021-11-03
  • 2022-12-23
  • 2022-12-23
  • 2021-12-16
相关资源
相似解决方案