Skip to content

Commit d08b49f

Browse files
committed
fix: make transition-group key warning a tip to avoid breaking compilation
1 parent 1c105fb commit d08b49f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/compiler/parser/index.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,8 @@ function processKey (el) {
341341
if (iterator && iterator === exp && parent && parent.tag === 'transition-group') {
342342
warn(
343343
`Do not use v-for index as key on <transition-group> children, ` +
344-
`this is the same as not using keys.`
344+
`this is the same as not using keys.`,
345+
true /* tip */
345346
)
346347
}
347348
}

0 commit comments

Comments
 (0)