Vue使用v-for="(item, index) in pics"报错

在使用mpvue框架写小程序中会遇到的一些问题:

(Emitted value instead of an instance of Error) 
  • : component lists rendered with v-for should have explicit keys. See https://vuejs.org/guide/list.html#key for more info.
  • 解决方法:
    在for循环后面加上一个:key="index"就可以了。

    你可能感兴趣的:(Vue使用v-for="(item, index) in pics"报错)