Vue使用v-for="(item, index) in pics"报错
程序员文章站
2023-12-23 11:32:34
...
在使用mpvue框架写小程序中会遇到的一些问题:
(Emitted value instead of an instance of Error) <li v-for="item in pics">: component lists rendered with v-for should have explicit keys. See https://vuejs.org/guide/list.html#key for more info.
解决方法:
在for循环后面加上一个:key="index"
就可以了。