|
@@ -4,6 +4,11 @@ import {constantRouterMap} from '@/config/router.config'
|
|
|
|
|
|
Vue.use(Router)
|
|
|
|
|
|
+const originalPush = Router.prototype.push;
|
|
|
+Router.prototype.push = function push(location) {
|
|
|
+ return originalPush.call(this, location).catch(err => err)
|
|
|
+}
|
|
|
+
|
|
|
export default new Router({
|
|
|
mode: 'history',
|
|
|
base: process.env.BASE_URL,
|