时间:2021-07-01 10:21:17 帮助过:75人阅读
代码报红对于追求优美代码的强迫症患者来说看着很不舒服,报红如下:
控制台中也会有:
- (Emitted value instead of an instance of Error) <Option v-for="item in searchTypeList">: component lists rendered with v-for should have explicit keys. See https://vuejs.org/guide/list.html#key for more info.
这样的提示,解决这个报红的问题,我们要根据他的提示,循环的时候加入一个唯一的key,这里选择使用index:
- <ul
- class="clearfix course-list">
- <li
- class="left"
- v-for="(item,index)
- in gradeClassfy.primary.grade"
- :key="index"><a
- href="#" rel="external nofollow" >{{item.name}}</a></li>
- </ul>
如此,报红消失。
以上这篇基于vue中解决v-for使用报红并出现警告的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。