【发布时间】:2021-10-13 02:05:17
【问题描述】:
寻求帮助我为什么会出错
"[vue/require-v-for-key]
Elements in iteration expect to have 'v-bind:key' directives.eslint-plugin-vue"
在我的 post.vue 上
[vue/require-v-for-key]
迭代中的元素期望有'v-bind:key' directives.eslint-plugin-vue
【问题讨论】:
-
你需要在 v-for 循环中添加 key (
v-for="row in data" :key="row.id")
标签: vue.js