Skip to content

Commit 569ef74

Browse files
docs: link to the style guide entry for keyed v-for (#1164)
1 parent 9d759d9 commit 569ef74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/guide/list.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ To give Vue a hint so that it can track each node's identity, and thus reuse and
127127
</div>
128128
```
129129

130-
It is recommended to provide a `key` attribute with `v-for` whenever possible, unless the iterated DOM content is simple, or you are intentionally relying on the default behavior for performance gains.
130+
[It is recommended](/style-guide/#keyed-v-for-essential) to provide a `key` attribute with `v-for` whenever possible, unless the iterated DOM content is simple, or you are intentionally relying on the default behavior for performance gains.
131131

132132
Since it's a generic mechanism for Vue to identify nodes, the `key` also has other uses that are not specifically tied to `v-for`, as we will see later in the guide.
133133

0 commit comments

Comments
 (0)