fix(runtime-core): stricter compat root mount check

This commit is contained in:
Evan You 2021-05-27 20:47:46 -04:00
parent 669037277b
commit 32e21333dd
4 changed files with 12 additions and 15 deletions

View File

@ -298,12 +298,10 @@ describe('renderer: component', () => {
}) })
test('the component VNode should be cloned when reusing it', () => { test('the component VNode should be cloned when reusing it', () => {
const Child = { const App = {
setup(props: any, { slots }: SetupContext) { render() {
return () => { const c = [h(Comp)]
const c = slots.default!() return [c, c, c]
return [c, c, c]
}
} }
} }
@ -315,14 +313,6 @@ describe('renderer: component', () => {
} }
} }
const App = {
setup() {
return () => {
return h(Child, () => [h(Comp)])
}
}
}
const root = nodeOps.createElement('div') const root = nodeOps.createElement('div')
render(h(App), root) render(h(App), root)
expect(serializeInner(root)).toBe(`<h1></h1><h1></h1><h1></h1>`) expect(serializeInner(root)).toBe(`<h1></h1><h1></h1><h1></h1>`)

View File

@ -472,6 +472,7 @@ function installCompatMount(
} }
setupComponent(instance) setupComponent(instance)
vnode.component = instance vnode.component = instance
vnode.isCompatRoot = true
// $mount & $destroy // $mount & $destroy
// these are defined on ctx and picked up by the $mount/$destroy // these are defined on ctx and picked up by the $mount/$destroy

View File

@ -1301,7 +1301,8 @@ function baseCreateRenderer(
) => { ) => {
// 2.x compat may pre-creaate the component instance before actually // 2.x compat may pre-creaate the component instance before actually
// mounting // mounting
const compatMountInstance = __COMPAT__ && initialVNode.component const compatMountInstance =
__COMPAT__ && initialVNode.isCompatRoot && initialVNode.component
const instance: ComponentInternalInstance = const instance: ComponentInternalInstance =
compatMountInstance || compatMountInstance ||
(initialVNode.component = createComponentInstance( (initialVNode.component = createComponentInstance(

View File

@ -136,6 +136,11 @@ export interface VNode<
*/ */
[ReactiveFlags.SKIP]: true [ReactiveFlags.SKIP]: true
/**
* @internal __COMPAT__ only
*/
isCompatRoot?: true
type: VNodeTypes type: VNodeTypes
props: (VNodeProps & ExtraProps) | null props: (VNodeProps & ExtraProps) | null
key: string | number | null key: string | number | null