fix(runtime-core): should disable tracking inside directive lifecycle hooks (#3699)
This commit is contained in:
@@ -19,6 +19,7 @@ import { currentRenderingInstance } from './componentRenderContext'
|
||||
import { callWithAsyncErrorHandling, ErrorCodes } from './errorHandling'
|
||||
import { ComponentPublicInstance } from './componentPublicInstance'
|
||||
import { mapCompatDirectiveHook } from './compat/customDirective'
|
||||
import { pauseTracking, resetTracking } from '@vue/reactivity'
|
||||
|
||||
export interface DirectiveBinding<V = any> {
|
||||
instance: ComponentPublicInstance | null
|
||||
@@ -130,12 +131,16 @@ export function invokeDirectiveHook(
|
||||
hook = mapCompatDirectiveHook(name, binding.dir, instance)
|
||||
}
|
||||
if (hook) {
|
||||
// disable tracking inside all lifecycle hooks
|
||||
// since they can potentially be called inside effects.
|
||||
pauseTracking()
|
||||
callWithAsyncErrorHandling(hook, instance, ErrorCodes.DIRECTIVE_HOOK, [
|
||||
vnode.el,
|
||||
binding,
|
||||
vnode,
|
||||
prevVNode
|
||||
])
|
||||
resetTracking()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user