fix(ssr): fix memory leak when vnode component render throws error
fix #3100
This commit is contained in:
parent
2b588cf1bc
commit
da944cb379
@ -10,7 +10,8 @@ import {
|
||||
Comment,
|
||||
cloneVNode,
|
||||
VNodeArrayChildren,
|
||||
isVNode
|
||||
isVNode,
|
||||
blockStack
|
||||
} from './vnode'
|
||||
import { handleError, ErrorCodes } from './errorHandling'
|
||||
import { PatchFlags, ShapeFlags, isOn, isModelListener } from '@vue/shared'
|
||||
@ -201,6 +202,7 @@ export function renderComponentRoot(
|
||||
result = root
|
||||
}
|
||||
} catch (err) {
|
||||
blockStack.length = 0
|
||||
handleError(err, instance, ErrorCodes.RENDER_FUNCTION)
|
||||
result = createVNode(Comment)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user