|
@@ -1,14 +1,14 @@
|
|
|
import Vue from 'vue'
|
|
|
import Router from 'vue-router'
|
|
|
-import {constantRouterMap} from '@/config/router.config'
|
|
|
+import { constantRouterMap } from '@/config/router.config'
|
|
|
|
|
|
try {
|
|
|
- const originalPush = Router.prototype.push
|
|
|
- Router.prototype.push = function push(location) {
|
|
|
- return originalPush.call(this, location).catch(err => err)
|
|
|
- }
|
|
|
- } catch (e) {
|
|
|
+ const originalPush = Router.prototype.push
|
|
|
+ Router.prototype.push = function push(location) {
|
|
|
+ return originalPush.call(this, location).catch(err => err)
|
|
|
}
|
|
|
+} catch (e) {
|
|
|
+}
|
|
|
|
|
|
Vue.use(Router)
|
|
|
|
|
@@ -22,6 +22,6 @@ Vue.use(Router)
|
|
|
export default new Router({
|
|
|
mode: 'history',
|
|
|
base: process.env.BASE_URL,
|
|
|
- scrollBehavior: () => ({y: 0}),
|
|
|
+ scrollBehavior: () => ({ y: 0 }),
|
|
|
routes: constantRouterMap
|
|
|
})
|