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 13bb643 commit 68522cfCopy full SHA for 68522cf
src/platforms/web/runtime/components/transition.js
@@ -140,7 +140,9 @@ export default {
140
// during entering.
141
const id: string = `__transition-${this._uid}-`
142
child.key = child.key == null
143
- ? id + child.tag
+ ? child.isComment
144
+ ? id + 'comment'
145
+ : id + child.tag
146
: isPrimitive(child.key)
147
? (String(child.key).indexOf(id) === 0 ? child.key : id + child.key)
148
: child.key
0 commit comments