目前在用vue2.0做开发,在使用v-for循环组件时候效果出来了,但是出现警告
component lists rendered with v-for should have explicit keys.
解决该问题的方法就是在需要遍历的组件上附加一个key属性,遍历一个test组件为例
<test v-for="(value,key) in objsw" :key='key'></test>
目前在用vue2.0做开发,在使用v-for循环组件时候效果出来了,但是出现警告
component lists rendered with v-for should have explicit keys.
解决该问题的方法就是在需要遍历的组件上附加一个key属性,遍历一个test组件为例
<test v-for="(value,key) in objsw" :key='key'></test>
本文标题:解决v-for指令循环组件时控制台warning问题
本文链接:https://www.haomeiwen.com/subject/gutuiqtx.html
网友评论