(Emitted value instead of an instance of Error) <el-row v-for="item in videoItem">: component lists rendered with v-for should have explicit keys.
时间: 2023-05-22 16:01:21 浏览: 306
基于vue中解决v-for使用报红并出现警告的问题
这是一个关于 Vue.js 的错误提示,它提醒我们在使用 v-for 渲染组件列表时需要为每个组件指定一个唯一的 key 值。可以通过在组件上添加 :key="item.id" 或者 :key="index" 来解决这个问题。
阅读全文