时间:2021-07-01 10:21:17 帮助过:12人阅读
控制台中也会有:
(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"><ahref="#">{{item.name}}</a></li> </ul>
如此,报红消失。
相关推荐:
Vue.js的列表渲染 v-for 数组 对象 子组件
实例讲解vue v-for 数据处理
循环使用v-for指令实例代码
以上就是vue中解决v-for使用报红实例的详细内容,更多请关注Gxl网其它相关文章!