Vue项目,运行出现warning(Emitted value instead of an instance of Error)


组件:<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" />


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM