You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- ✓ GOOD -->
{#eachitemsasitem (item.id)}
<li>{item.name} x {item.qty}</li>
{/each}
<!-- ✗ BAD -->
{#eachitemsasitem}
<li>{item.name} x {item.qty}</li>
{/each}
Additional comments
No response
The text was updated successfully, but these errors were encountered:
Motivation
This is exactly the same as Vue rule.
https://eslint.vuejs.org/rules/require-v-for-key.html
Description
Require
key
with{#each}
syntaxExamples
Additional comments
No response
The text was updated successfully, but these errors were encountered: