You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
641 B
26 lines
641 B
2 years ago
|
import store from './store';
|
||
|
|
||
|
export default {
|
||
|
install: app => {
|
||
|
app.config.errorHandler = (err, vm, info) => {
|
||
|
store.commit('ADD_LOGS', {
|
||
|
type: 'error',
|
||
|
message: err.message,
|
||
|
stack: err.stack,
|
||
|
info,
|
||
|
});
|
||
|
if (process.env.NODE_ENV === 'development') {
|
||
|
console.group('>>>>>> 错误信息 >>>>>>');
|
||
|
console.log(info);
|
||
|
console.groupEnd();
|
||
|
console.group('>>>>>> Vue 实例 >>>>>>');
|
||
|
console.log(vm);
|
||
|
console.groupEnd();
|
||
|
console.group('>>>>>> Error >>>>>>');
|
||
|
console.log(err);
|
||
|
console.groupEnd();
|
||
|
}
|
||
|
};
|
||
|
},
|
||
|
};
|