fix(keep-alive): should remove wrapped version of injected keep alive hooks (#1959)
This commit is contained in:
@@ -360,14 +360,16 @@ function registerKeepAliveHook(
|
||||
}
|
||||
|
||||
function injectToKeepAliveRoot(
|
||||
hook: Function,
|
||||
hook: Function & { __weh?: Function },
|
||||
type: LifecycleHooks,
|
||||
target: ComponentInternalInstance,
|
||||
keepAliveRoot: ComponentInternalInstance
|
||||
) {
|
||||
injectHook(type, hook, keepAliveRoot, true /* prepend */)
|
||||
// injectHook wraps the original for error handling, so make sure to remove
|
||||
// the wrapped version.
|
||||
const injected = injectHook(type, hook, keepAliveRoot, true /* prepend */)
|
||||
onUnmounted(() => {
|
||||
remove(keepAliveRoot[type]!, hook)
|
||||
remove(keepAliveRoot[type]!, injected)
|
||||
}, target)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user