v-for报"Elements in iteration expect to have 'v-bind:key' directives"错误的解决方案
一、 问题日志✘https://google.com/#q=vue%2Frequire-v-for-keyElements in iteration expect to have 'v-bind:key' directivessrc/components/home.vue:36:13<li v-for="year in object...
·
一、 问题日志
✘ https://google.com/#q=vue%2Frequire-v-for-key Elements in iteration expect to have 'v-bind:key' directives
src/components/home.vue:36:13
<li v-for="year in objective">
^
二、 问题原因
在vue新版本中,v-for迭代语法有变动,需要加入key值。
三、 解决方案
v-for="year in objective"
后面加上key值定义,注意有个空格
v-for="year in objective" :key="year.num"
四、 参考文献
更多推荐
已为社区贡献5条内容
所有评论(0)