当前位置:Gxlcms > JavaScript > 基于vue中解决v-for使用报红并出现警告的问题

基于vue中解决v-for使用报红并出现警告的问题

时间:2021-07-01 10:21:17 帮助过:75人阅读

代码报红对于追求优美代码的强迫症患者来说看着很不舒服,报红如下:

控制台中也会有:

  1. (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:

  1. <ul
  2. class="clearfix course-list">
  3. <li
  4. class="left"
  5. v-for="(item,index)
  6. in gradeClassfy.primary.grade"
  7. :key="index"><a
  8. href="#" rel="external nofollow" >{{item.name}}</a></li>
  9. </ul>

如此,报红消失。

以上这篇基于vue中解决v-for使用报红并出现警告的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

人气教程排行