Vue:Elements in iteration expect to have 'v-bind:key' directives的解决办法

1、Vue 2.2.0+的版本里,当在组件中使用v-for时,key是必须的。

我们可以更改vetur配置 :vscode文件->首选项->设置->搜索vetur.validation.Template,将这一项去掉就可以了

Vue:Elements in iteration expect to have 'v-bind:key' directives的解决办法_第1张图片

2、我们在使用v-for的时候,在v-for 后添加 v-bind:key="item"


注意以上的代码中我们这样使用:

  •  

    这样问题就解决了~

  • 你可能感兴趣的:(前端开发,Vue起步学习)