Custom elements in iteration require ‘v-bind:key‘ directives vuevalid-v-for解决方案

    技术2022-07-10  125

    最近在使用 iView 组件库进行开发,在使用 Select 选择器 时出现问题,为什么使用模板会报错呢?

    error : Custom elements in iteration require ‘v-bind:key’ directives vue/valid-v-for 原因出在 template 里 模板语句是:

    <i-option v-for="item in classList" :value="item.value">{{ item.label }}</i-option>

    需要按照错误提示增加对 key 的绑定

    <i-option v-for="item in classList" :value="item.value" :key="item.label">{{ item.label }}</i-option>

    问题得到解决

    Processed: 0.015, SQL: 9