17 lines
383 B
JavaScript
17 lines
383 B
JavaScript
import Vue from 'vue'
|
|
import store from './store'
|
|
|
|
// you can set only in production env show the error-log
|
|
// if (process.env.NODE_ENV === 'production') {
|
|
Vue.config.errorHandler = function(err, vm, info, a) {
|
|
Vue.nextTick(() => {
|
|
store.dispatch('addErrorLog', {
|
|
err,
|
|
vm,
|
|
info,
|
|
url: window.location.href
|
|
})
|
|
console.error(err, info)
|
|
})
|
|
}
|
|
// }
|