parent
d2df28dca4
commit
fded1e8dfa
@ -686,14 +686,16 @@ function baseCreateRenderer(
|
|||||||
hostInsert(anchor!, container, nextSibling)
|
hostInsert(anchor!, container, nextSibling)
|
||||||
}
|
}
|
||||||
|
|
||||||
const removeStaticNode = ({ el, anchor }: VNode) => {
|
const removeStaticNode = (vnode: VNode) => {
|
||||||
let next
|
let next
|
||||||
|
let { el, anchor } = vnode
|
||||||
while (el && el !== anchor) {
|
while (el && el !== anchor) {
|
||||||
next = hostNextSibling(el)
|
next = hostNextSibling(el)
|
||||||
hostRemove(el)
|
hostRemove(el)
|
||||||
el = next
|
el = next
|
||||||
}
|
}
|
||||||
hostRemove(anchor!)
|
hostRemove(anchor!)
|
||||||
|
vnode.el = vnode.anchor = null
|
||||||
}
|
}
|
||||||
|
|
||||||
const processElement = (
|
const processElement = (
|
||||||
|
Loading…
Reference in New Issue
Block a user