mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-04-06 03:57:53 +08:00
15 lines
310 B
JavaScript
15 lines
310 B
JavaScript
import Vue from 'vue'
|
|
import errLog from '@/store/errLog'
|
|
|
|
// 生产环境错误日志
|
|
if (process.env.NODE_ENV === 'production') {
|
|
Vue.config.errorHandler = function(err, vm) {
|
|
console.log(err, window.location.href)
|
|
errLog.pushLog({
|
|
err,
|
|
url: window.location.href,
|
|
vm
|
|
})
|
|
}
|
|
}
|