Vue报错Custom elements in iteration require 'v-bind:key' directives."错误解决

错误代码

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

修改后

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

添加一个:key就可以了

猜你喜欢

转载自blog.csdn.net/weixin_41996632/article/details/89338501
今日推荐