问题 使用uniapp 编译,运行微信小程序环境时,报错 Bad attr data-event-opts with message。(这个错误报错原因很多,这里只解决一个) 原因 原因是:代码中有: :key="'swiperList' + i" 解决方法 <swiper-item v-for="(arr, i) in swiperList" :key="10000000 + i"></swiper-item> 不要使用字符串,使用数字就没有问题。