Skip to content

Commit bba6b3d

Browse files
authored
feat(types): enhance type for onErrorCaptured (#12735)
1 parent 9eb8ea5 commit bba6b3d

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

src/v3/apiLifecycle.ts

+16-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ export const onBeforeUpdate = createLifeCycle('beforeUpdate')
4242
export const onUpdated = createLifeCycle('updated')
4343
export const onBeforeUnmount = createLifeCycle('beforeDestroy')
4444
export const onUnmounted = createLifeCycle('destroyed')
45-
export const onErrorCaptured = createLifeCycle('errorCaptured')
4645
export const onActivated = createLifeCycle('activated')
4746
export const onDeactivated = createLifeCycle('deactivated')
4847
export const onServerPrefetch = createLifeCycle('serverPrefetch')
@@ -51,3 +50,19 @@ export const onRenderTracked =
5150
createLifeCycle<(e: DebuggerEvent) => any>('renderTracked')
5251
export const onRenderTriggered =
5352
createLifeCycle<(e: DebuggerEvent) => any>('renderTriggered')
53+
54+
export type ErrorCapturedHook<TError = unknown> = (
55+
err: TError,
56+
instance: any,
57+
info: string
58+
) => boolean | void
59+
60+
const injectErrorCapturedHook =
61+
createLifeCycle<ErrorCapturedHook<any>>('errorCaptured')
62+
63+
export function onErrorCaptured<TError = Error>(
64+
hook: ErrorCapturedHook<TError>,
65+
target: any = currentInstance
66+
) {
67+
injectErrorCapturedHook(hook, target)
68+
}

0 commit comments

Comments
 (0)