Skip to content

Latest commit

 

History

History
84 lines (64 loc) · 2.42 KB

valid-v-for.md

File metadata and controls

84 lines (64 loc) · 2.42 KB
pageClass sidebarDepth title description
rule-details
0
vue/valid-v-for
enforce valid `v-for` directives

vue/valid-v-for

enforce valid v-for directives

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

This rule checks whether every v-for directive is valid.

📖 Rule Details

This rule reports v-for directives in the following cases:

  • The directive has that argument. E.g. <div v-for:aaa></div>
  • The directive has that modifier. E.g. <div v-for.bbb></div>
  • The directive does not have that attribute value. E.g. <div v-for></div>
  • If the element which has the directive is a custom component, the component does not have v-bind:key directive. E.g. <your-component v-for="item in list"></your-component>
  • The v-bind:key directive does not use the variables which are defined by the v-for directive. E.g. <div v-for="x in list" :key="foo"></div>

If the element which has the directive is a reserved element, this rule does not report it even if the element does not have v-bind:key directive because it's not fatal error. require-v-for-key rule reports it.

<template>
  <!-- ✓ GOOD -->
  <div v-for="todo in todos"/>
  <MyComponent
    v-for="todo in todos"
    :key="todo.id"
  />
  <div
    v-for="todo in todos"
    :is="MyComponent"
    :key="todo.id"
  />

  <!-- ✗ BAD -->
  <div v-for/>
  <div v-for:aaa="todo in todos"/>
  <div v-for.bbb="todo in todos"/>
  <div
    v-for="todo in todos"
    is="MyComponent"
  />
  <MyComponent v-for="todo in todos"/>
  <MyComponent
    v-for="todo in todos"
    :key="foo"
  />
</template>

::: warning Note This rule does not check syntax errors in directives. no-parsing-error rule reports it. The following cases are syntax errors:

  • The directive's value isn't alias in expr. E.g. <div v-for="foo"></div>
  • The alias isn't LHS. E.g. <div v-for="foo() in list"></div> :::

🔧 Options

Nothing.

👫 Related rules

🔍 Implementation