这个警告该怎么解决?是要修改video里的key吗?
[WDS] Warnings while compiling.
./node_modules/vue-loader/lib/template-compiler?{"id":"data-v-45eba5d4","hasScoped":true,"transformToRequire":{"video":["src","poster"],"source":"src","img":"src","image":"xlink:href"},"buble":{"transforms":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/components/RotationChart_gzh.vue
(Emitted value instead of an instance of Error) Do not use v-for index as key on <transition-group> children, this is the same as not using keys.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这里是提示你v-for时不要:key="index",而是用其他唯一的值,如每一项的id,:key="item.id"
在imgList加标识,已解决