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

转载:https://www.jianshu.com/p/2cf1a0736154

 

搜尽各大神 最后得出原因是eslint检测出现bug

解决方法有两种

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

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

  1. 在build处关闭eslint检测

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

 

posted @ 2019-11-21 14:02  山兮木  阅读(1060)  评论(1编辑  收藏  举报
/* 看板娘 */