码迷,mamicode.com
首页 > 其他好文 > 详细

vue报错之Duplicate keys detected: '0'. This may cause an update error.

时间:2019-03-18 12:06:49      阅读:7133      评论:0      收藏:0      [点我收藏+]

标签:目的   修改   this   error   昨天   info   key   出现   重复   

昨天运行vue项目的时候,出现了[Vue warn]: Duplicate keys detected: ‘0‘. This may cause an update error. 错误,检测到重复的key值。主要是写了两个for循环,我们在使用v-for的时候,都要加上一个必要的key值,然而又将key的值写成一样的了。

可以将其中一个的key修改一下即可。

 <div class="info1" v-for="(item, index) in itemList" :key="‘info1-‘+ index"></div>

 

vue报错之Duplicate keys detected: '0'. This may cause an update error.

标签:目的   修改   this   error   昨天   info   key   出现   重复   

原文地址:https://www.cnblogs.com/songForU/p/10551037.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!