We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b559547 commit f1e37f6Copy full SHA for f1e37f6
src/core/vdom/helpers.js
@@ -35,7 +35,7 @@ export function normalizeChildren (
35
applyNS(c, ns)
36
}
37
// default key for nested array children (likely generated by v-for)
38
- if (c.key == null && nestedIndex != null) {
+ if (c.tag && c.key == null && nestedIndex != null) {
39
c.key = `__vlist_${nestedIndex}_${i}__`
40
41
res.push(c)
0 commit comments