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

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

解决方法有两种

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

    1. 在build处关闭eslint检测

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

  • 你可能感兴趣的:(vue 出现Elements in iteration expect to have 'v-bind:key' directives问题)