Skip to content

Commit 246ec5c

Browse files
authored
fix(runtime-core): do not call transition enter hooks when mounting in suspense (#1588)
fix #1583
1 parent 64c7b2f commit 246ec5c

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

packages/runtime-core/src/renderer.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -736,14 +736,17 @@ function baseCreateRenderer(
736736
}
737737

738738
hostInsert(el, container, anchor)
739+
// #1583 For inside suspense case, enter hook should call when suspense resolved
740+
const needCallTransitionHooks =
741+
!parentSuspense && transition && !transition.persisted
739742
if (
740743
(vnodeHook = props && props.onVnodeMounted) ||
741-
(transition && !transition.persisted) ||
744+
needCallTransitionHooks ||
742745
dirs
743746
) {
744747
queuePostRenderEffect(() => {
745748
vnodeHook && invokeVNodeHook(vnodeHook, parentComponent, vnode)
746-
transition && !transition.persisted && transition.enter(el)
749+
needCallTransitionHooks && transition!.enter(el)
747750
dirs && invokeDirectiveHook(vnode, null, parentComponent, 'mounted')
748751
}, parentSuspense)
749752
}

0 commit comments

Comments
 (0)