vue 出现Elements in iteration expect to have 'v-bind:key' directives

是由于eslint检测出现bug

解决方法有两种

  1. v-for 后添加 :key='item'

<li v-for="item in list" :key="item">

  1. 在build处关闭eslint检测

...(config.dev.useEslint ? [createLintingRule()] : []),

原创文章 241 获赞 169 访问量 72万+

猜你喜欢

转载自blog.csdn.net/yusirxiaer/article/details/100138031