v-for一定要与v-bind:key="id"连用

Posted yegeng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了v-for一定要与v-bind:key="id"连用相关的知识,希望对你有一定的参考价值。

1. v-for:

<div v-for="(item,index) in todolist" v-bind:key="item.id">

</div>

2. v-if..... v-else :

<div v-if="flag" v-bind:key="item.id">

</div>

<div v-else v-bind:key="item.id">

</div>

 

以上是关于v-for一定要与v-bind:key="id"连用的主要内容,如果未能解决你的问题,请参考以下文章

构造 v-for 循环时 :key 和 v-bind:key 有啥区别?

报错:Custom elements in iteration require 'v-bind:key'

解决Vue.js中使用v-for提示缺少onbind:key

没有 JSON 对象的 Vuejs v-for

记录错误:Custom elements in iteration require 'v-bind:key' directives.

[vue/require-v-for-key] Elements in iteration expect to have 'v-bind:key' directives.