fix: fragment replaceVNode

This commit is contained in:
Evan You
2018-10-28 14:22:52 -04:00
parent 45e9a42a1a
commit e8dd725e41
2 changed files with 4 additions and 4 deletions

View File

@@ -164,14 +164,14 @@ export function createRenderer(options: RendererOptions) {
if (childFlags !== ChildrenFlags.NO_CHILDREN) {
const hasSVGChildren = isSVG && tag !== 'foreignObject'
if (childFlags & ChildrenFlags.SINGLE_VNODE) {
mount(children as VNode, el, contextVNode, hasSVGChildren, endNode)
mount(children as VNode, el, contextVNode, hasSVGChildren, null)
} else if (childFlags & ChildrenFlags.MULTIPLE_VNODES) {
mountArrayChildren(
children as VNode[],
el,
contextVNode,
hasSVGChildren,
endNode
null
)
}
}