mirror of
https://github.com/jeecgboot/JeecgBoot.git
synced 2026-02-08 00:51:32 +00:00
17 lines
431 B
Java
17 lines
431 B
Java
import Vue from 'vue'
|
|
import Router from 'vue-router'
|
|
import { constantRouterMap } from '@/config/router.config'
|
|
|
|
const originalPush = Router.prototype.push
|
|
Router.prototype.push = function push(location) {
|
|
return originalPush.call(this, location).catch(err => err)
|
|
}
|
|
|
|
Vue.use(Router)
|
|
|
|
export default new Router({
|
|
mode: 'history',
|
|
base: process.env.BASE_URL,
|
|
scrollBehavior: () => ({ y: 0 }),
|
|
routes: constantRouterMap
|
|
}) |