@@ -212,14 +212,15 @@ export function createPatchFunction (backend) {
212
212
if ( isDef ( i ) ) {
213
213
const isReactivated = isDef ( vnode . componentInstance ) && i . keepAlive
214
214
if ( isDef ( i = i . hook ) && isDef ( i = i . init ) ) {
215
- i ( vnode , false /* hydrating */ , parentElm , refElm )
215
+ i ( vnode , false /* hydrating */ )
216
216
}
217
217
// after calling the init hook, if the vnode is a child component
218
218
// it should've created a child instance and mounted it. the child
219
219
// component also has set the placeholder vnode's elm.
220
220
// in that case we can just return the element and be done.
221
221
if ( isDef ( vnode . componentInstance ) ) {
222
222
initComponent ( vnode , insertedVnodeQueue )
223
+ insert ( parentElm , vnode . elm , refElm )
223
224
if ( isTrue ( isReactivated ) ) {
224
225
reactivateComponent ( vnode , insertedVnodeQueue , parentElm , refElm )
225
226
}
@@ -681,7 +682,7 @@ export function createPatchFunction (backend) {
681
682
}
682
683
}
683
684
684
- return function patch ( oldVnode , vnode , hydrating , removeOnly , parentElm , refElm ) {
685
+ return function patch ( oldVnode , vnode , hydrating , removeOnly ) {
685
686
if ( isUndef ( vnode ) ) {
686
687
if ( isDef ( oldVnode ) ) invokeDestroyHook ( oldVnode )
687
688
return
@@ -693,7 +694,7 @@ export function createPatchFunction (backend) {
693
694
if ( isUndef ( oldVnode ) ) {
694
695
// empty mount (likely as component), create new root element
695
696
isInitialPatch = true
696
- createElm ( vnode , insertedVnodeQueue , parentElm , refElm )
697
+ createElm ( vnode , insertedVnodeQueue )
697
698
} else {
698
699
const isRealElement = isDef ( oldVnode . nodeType )
699
700
if ( ! isRealElement && sameVnode ( oldVnode , vnode ) ) {
0 commit comments