Skip to content

Files

Latest commit

 

History

History
27 lines (19 loc) · 564 Bytes

require-v-for-key.md

File metadata and controls

27 lines (19 loc) · 564 Bytes

Pattern: Missing v-bind:key for v-for directive

Issue: -

Description

This rule reports the elements which have v-for and do not have v-bind:key with exception to custom components.

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

Further Reading