Vue Guideline: Templates — Use key with v-for. Description: Proper list rendering and updates. Do: Unique key for each item. Don't: Index as key for dynamic lists. Good Example: v-for="item in items" :key="item.id". Bad Example: v-for="(item, i) in items" :key="i". Severity: High. Docs: .