报错截图
报错原因:用到两个相同的for循环,而这两个for循环的key值是一样的。 关键代码:
<div class="bg">
<div class="title" >
<div class="showTitle" v-for="(item,index) in titleArr" :key="'index">{{item}}</div>
<van-row v-for="(item,index) in list" :key="index">
<van-col span="8">{{item.time}}</van-col>
<van-col span="8">{{item.sendNum}}</van-col>
<van-col span="8">{{item.leftNum}}</van-col>
</van-row>
</div>
</div>
</div>
解决方案: 将其中一个key值拼接数字或者字符串,区分另一个key值即可!
<div class="bg">
<div class="title" >
<div class="showTitle" v-for="(item,index) in titleArr" :key="'item'+index">{{item}}</div>
<van-row v-for="(item,index) in list" :key="index">
<van-col span="8">{{item.time}}</van-col>
<van-col span="8">{{item.sendNum}}</van-col>
<van-col span="8">{{item.leftNum}}</van-col>
</van-row>
</div>
</div>
</div>
扫码关注腾讯云开发者
领取腾讯云代金券
Copyright © 2013 - 2025 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号:粤B2-20090059 深公网安备号 44030502008569
腾讯云计算(北京)有限责任公司 京ICP证150476号 | 京ICP备11018762号 | 京公网安备号11010802020287
Copyright © 2013 - 2025 Tencent Cloud.
All Rights Reserved. 腾讯云 版权所有