fix(warning): handle errors in warn handler (#396)
This commit is contained in:
parent
e7e3eb8662
commit
db7666d0f3
@ -2,6 +2,7 @@ import { VNode } from './vnode'
|
|||||||
import { Data, ComponentInternalInstance, Component } from './component'
|
import { Data, ComponentInternalInstance, Component } from './component'
|
||||||
import { isString, isFunction } from '@vue/shared'
|
import { isString, isFunction } from '@vue/shared'
|
||||||
import { toRaw } from '@vue/reactivity'
|
import { toRaw } from '@vue/reactivity'
|
||||||
|
import { callWithErrorHandling, ErrorCodes } from './errorHandling'
|
||||||
|
|
||||||
type ComponentVNode = VNode & {
|
type ComponentVNode = VNode & {
|
||||||
type: Component
|
type: Component
|
||||||
@ -30,10 +31,15 @@ export function warn(msg: string, ...args: any[]) {
|
|||||||
const trace = getComponentTrace()
|
const trace = getComponentTrace()
|
||||||
|
|
||||||
if (appWarnHandler) {
|
if (appWarnHandler) {
|
||||||
appWarnHandler(
|
callWithErrorHandling(
|
||||||
msg + args.join(''),
|
appWarnHandler,
|
||||||
instance && instance.renderProxy,
|
instance,
|
||||||
formatTrace(trace).join('')
|
ErrorCodes.APP_WARN_HANDLER,
|
||||||
|
[
|
||||||
|
msg + args.join(''),
|
||||||
|
instance && instance.renderProxy,
|
||||||
|
formatTrace(trace).join('')
|
||||||
|
]
|
||||||
)
|
)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user