File tree 1 file changed +5
-2
lines changed
packages/runtime-core/src
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -736,14 +736,17 @@ function baseCreateRenderer(
736
736
}
737
737
738
738
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
739
742
if (
740
743
( vnodeHook = props && props . onVnodeMounted ) ||
741
- ( transition && ! transition . persisted ) ||
744
+ needCallTransitionHooks ||
742
745
dirs
743
746
) {
744
747
queuePostRenderEffect ( ( ) => {
745
748
vnodeHook && invokeVNodeHook ( vnodeHook , parentComponent , vnode )
746
- transition && ! transition . persisted && transition . enter ( el )
749
+ needCallTransitionHooks && transition ! . enter ( el )
747
750
dirs && invokeDirectiveHook ( vnode , null , parentComponent , 'mounted' )
748
751
} , parentSuspense )
749
752
}
You can’t perform that action at this time.
0 commit comments