在vue2.0+element-ui时的v-for 报了一个这样错误:
(Emitted value instead of an instance of Error): component lists rendered with v-for should have explicit keys.
意思是在说,组件列表呈现v-for渲染时,应该有明确的keys。在前面你用到了v-for="(item,index) in data",但是你没有明确:keys,且这个keys应该是唯一的。所以 在组件上 加上[:keys="index"]即可。希望可以帮到您。
文章来至惊讶https://www.52jingya.com/aid13384.html。感谢您的阅读!