Skip to content

Latest commit

 

History

History
54 lines (38 loc) · 1.49 KB

no-v-for-template-key-on-child.md

File metadata and controls

54 lines (38 loc) · 1.49 KB
pageClass sidebarDepth title description
rule-details
0
vue/no-v-for-template-key-on-child
disallow key of `<template v-for>` placed on child elements

vue/no-v-for-template-key-on-child

disallow key of <template v-for> placed on child elements

  • ⚙️ This rule is included in all of "plugin:vue/vue3-essential", "plugin:vue/vue3-strongly-recommended" and "plugin:vue/vue3-recommended".

📖 Rule Details

This rule reports the key of the <template v-for> placed on the child elements.

In Vue.js 3.x, with the support for fragments, the <template v-for> key can be placed on the <template> tag.

::: warning Note Do not use with the vue/no-v-for-template-key rule for Vue.js 2.x.
This rule conflicts with the vue/no-v-for-template-key rule. :::

<template>
  <!-- ✓ GOOD -->
  <template v-for="todo in todos" :key="todo">
    <Foo />
  </template>

  <!-- ✗ BAD -->
  <template v-for="todo in todos">
    <Foo :key="todo" />
  </template>
</template>

🔧 Options

Nothing.

👫 Related Rules

🔍 Implementation