|
@@ -140,7 +140,9 @@ export default {
|
|
|
// during entering.
|
|
// during entering.
|
|
|
const id: string = `__transition-${this._uid}-`
|
|
const id: string = `__transition-${this._uid}-`
|
|
|
child.key = child.key == null
|
|
child.key = child.key == null
|
|
|
- ? id + child.tag
|
|
|
|
|
|
|
+ ? child.isComment
|
|
|
|
|
+ ? id + 'comment'
|
|
|
|
|
+ : id + child.tag
|
|
|
: isPrimitive(child.key)
|
|
: isPrimitive(child.key)
|
|
|
? (String(child.key).indexOf(id) === 0 ? child.key : id + child.key)
|
|
? (String(child.key).indexOf(id) === 0 ? child.key : id + child.key)
|
|
|
: child.key
|
|
: child.key
|