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 2c6930a commit 2388bdbCopy full SHA for 2388bdb
src/platforms/web/runtime/modules/transition.js
@@ -46,7 +46,8 @@ export function enter (vnode: VNodeWithData) {
46
appearCancelled
47
} = data
48
49
- const isAppear = !vnode.context._isMounted
+ const context = vnode.context.$parent || vnode.context
50
+ const isAppear = !context._isMounted
51
if (isAppear && !appear && appear !== '') {
52
return
53
}
0 commit comments