vue 不显示报错信息(被拦截了) 解决办法:devtool开启pause on caught exceptions
vue2
不显示的原因是被某个库的机制给拦截了,catch捕获了,开启后就能看到(然后沿着调用栈步进一下大概就能知道是哪个库/哪段代码,导致的错误不显示)
globalHandleError
handleError
Vue._render
function globalHandleError(err, vm, info) {
if (config.errorHandler) {//我是这里有个库注入的errorHandler
try {
return config.errorHandler.call(null, err, vm, info);
}
catch (e) {
// if the user intentionally throws the original error in the handler,
// do not log it twice
if (e !== err) {
logError(e, null, 'config.errorHandler');
}
}
}
logError(err, vm, info);
}