optimize: 捕获页面加载过程中的异常,并打印在控制台中。
parent
6d57101b2f
commit
bd1b5b2202
|
@ -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({
|
||||
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({
|
||||
})
|
||||
const app = new Vue({
|
||||
router,
|
||||
render: h => h(App),
|
||||
})
|
||||
view.initApi(app).then(async (api) => {
|
||||
})
|
||||
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) {
|
||||
// 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) {
|
||||
}
|
||||
const VueRouterReplace = VueRouter.prototype.replace
|
||||
VueRouter.prototype.replace = function replace (location) {
|
||||
return VueRouterReplace.call(this, location).catch(err => err)
|
||||
}
|
||||
} catch (e) {
|
||||
console.error('页面加载出现未知异常:', e)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue