Skip to content

Files

Latest commit

 

History

History
28 lines (19 loc) · 606 Bytes

no-template-key.md

File metadata and controls

28 lines (19 loc) · 606 Bytes

Pattern: Use of key attribute on <template>

Issue: -

Description

This rule reports the <template> elements which have key attribute.

<template>
  <!-- ✓ GOOD -->
  <div key="foo"> ... </div>
  <template> ... </template>

  <!-- ✗ BAD -->
  <template key="foo"> ... </template>
  <template v-bind:key="bar"> ... </template>
  <template :key="baz"> ... </template>
</template>

Further Reading