From: Evan You Date: Wed, 1 Jul 2020 20:01:46 +0000 (-0400) Subject: fix(runtime-core): pass unmount into inital mount patch prop X-Git-Tag: v3.0.0-beta.18~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2bdb5c146449092623f06e20fb71ebaca7e5588f;p=thirdparty%2Fvuejs%2Fcore.git fix(runtime-core): pass unmount into inital mount patch prop --- diff --git a/packages/runtime-core/src/renderer.ts b/packages/runtime-core/src/renderer.ts index 4a0830f02f..e81cc87a63 100644 --- a/packages/runtime-core/src/renderer.ts +++ b/packages/runtime-core/src/renderer.ts @@ -698,7 +698,8 @@ function baseCreateRenderer( isSVG, vnode.children as VNode[], parentComponent, - parentSuspense + parentSuspense, + unmountChildren ) } }