24 lines
729 B
Java
24 lines
729 B
Java
import Vue from 'vue'
|
|
import Router from 'vue-router'
|
|
import { constantRouterMap } from '@/config/router.config'
|
|
|
|
Vue.use(Router)
|
|
|
|
const originalPush = Router.prototype.push
|
|
Router.prototype.push = function push(location, onResolve, onReject) {
|
|
if (onResolve || onReject) return originalPush.call(this, location, onResolve, onReject)
|
|
return originalPush.call(this, location).catch(err => err)
|
|
}
|
|
|
|
const createRouter = ()=> new Router({
|
|
mode: 'history',
|
|
base: process.env.BASE_URL,
|
|
scrollBehavior: () => ({ y: 0 }),
|
|
routes: constantRouterMap
|
|
})
|
|
const router = createRouter()
|
|
export function resetRouter () {
|
|
const newRouter = createRouter()
|
|
router.matcher = newRouter.matcher // reset router
|
|
}
|
|
export default router |