fix(transitionGroup): fix transition children resolving condition
This commit is contained in:
@@ -140,8 +140,8 @@ function getTransitionRawChildren(children: VNode[]): VNode[] {
|
|||||||
if (child.type === Fragment) {
|
if (child.type === Fragment) {
|
||||||
ret = ret.concat(getTransitionRawChildren(child.children as VNode[]))
|
ret = ret.concat(getTransitionRawChildren(child.children as VNode[]))
|
||||||
}
|
}
|
||||||
// comment should be skip, e.g. v-if
|
// comment placeholders should be skipped, e.g. v-if
|
||||||
if (child.type !== Comment) {
|
else if (child.type !== Comment) {
|
||||||
ret.push(child)
|
ret.push(child)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user