欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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"就可以了。

上一篇:

下一篇: