组件:<XXXX v-for="item in items" />

warning:(Emitted value instead of an instance of Error) <XXXX v-for="item in items" />: component lists rendered with v-for should have explicit keys.

See https://vuejs.org/guide/list.html#key for more info.

解决方式:在组件中加入自定义的属性key值就好

<XXXX v-for="item in items" :key="item" />

posted on 2018-12-24 11:13  chengloading  阅读(5193)  评论(0)    收藏  举报