在使用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"
就可以了。
网友评论