optimize: 捕获页面加载过程中的异常,并打印在控制台中。

pull/445/head
王良 2025-01-22 16:45:33 +08:00
parent 6d57101b2f
commit bd1b5b2202
1 changed files with 31 additions and 27 deletions

View File

@ -9,32 +9,36 @@ import 'ant-design-vue/dist/antd.css'
import './view/style/index.scss'
import './view/style/theme/dark.scss' // 暗色主题
Vue.config.productionTip = false
Vue.use(antd)
Vue.use(VueRouter)
Vue.component(DsContainer)
// 3. 创建 router 实例,然后传 `routes` 配置
// 你还可以传别的配置参数, 不过先这么简单着吧。
const router = new VueRouter({
routes, // (缩写) 相当于 routes: routes
})
const app = new Vue({
router,
render: h => h(App),
})
view.initApi(app).then(async (api) => {
// 初始化status
await view.initPre(Vue, api)
app.$mount('#app')
view.initModules(app, router)
})
try {
Vue.config.productionTip = false
Vue.use(antd)
Vue.use(VueRouter)
Vue.component(DsContainer)
// 3. 创建 router 实例,然后传 `routes` 配置
// 你还可以传别的配置参数, 不过先这么简单着吧。
const router = new VueRouter({
routes, // (缩写) 相当于 routes: routes
})
const app = new Vue({
router,
render: h => h(App),
})
view.initApi(app).then(async (api) => {
// 初始化status
await view.initPre(Vue, api)
app.$mount('#app')
view.initModules(app, router)
})
// fix vue-router NavigationDuplicated
const VueRouterPush = VueRouter.prototype.push
VueRouter.prototype.push = function push (location) {
return VueRouterPush.call(this, location).catch(err => err)
}
const VueRouterReplace = VueRouter.prototype.replace
VueRouter.prototype.replace = function replace (location) {
return VueRouterReplace.call(this, location).catch(err => err)
// fix vue-router NavigationDuplicated
const VueRouterPush = VueRouter.prototype.push
VueRouter.prototype.push = function push (location) {
return VueRouterPush.call(this, location).catch(err => err)
}
const VueRouterReplace = VueRouter.prototype.replace
VueRouter.prototype.replace = function replace (location) {
return VueRouterReplace.call(this, location).catch(err => err)
}
} catch (e) {
console.error('页面加载出现未知异常:', e)
}