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

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

vue出现Elements in iteration expect to have ‘v-bind:key‘ directives问题_第1张图片
出现上述问题的原因是 eslint 检测出现 bug

解决方法有两种

  1. v-for 后添加 v-bind:key=‘item’ / 简写 ( :key=‘item’ )
  • // 全称 or
  • // 简写
  • vue出现Elements in iteration expect to have ‘v-bind:key‘ directives问题_第2张图片

    1. 在build处关闭eslint检测
    ...(config.dev.useEslint ? [createLintingRule()] : [])
    

    你可能感兴趣的:(vue)