1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| import Vue from 'vue'
| import VueRouter from 'vue-router'
| import routes from './routes'
| Vue.use(VueRouter)
| const originalPush = VueRouter.prototype.push
|
| VueRouter.prototype.push = function push (location) {
| return originalPush.call(this, location).catch(err => err)
| }
| const router = new VueRouter({
| mode: 'hash',
| base: `/${process.env.VUE_APP_ROUTER_BASE}`,
| routes
| })
|
| export default router
|
|