inleft
2022-01-14 56a4b88b16b5f86a2a697018a3e2546d3abf73e3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import Vue from 'vue';
import Router from 'vue-router'
 
import {
    constantRouterMap,
    asyncRouterMap
} from '@/config/router.config.js'
 
 
Vue.use(Router)
 
/*实例化路由*/
const router = new Router({
    mode: "history", //模式修改  
    routes: asyncRouterMap
})
 
router.beforeEach((to, from, next) => {
    window.document.title = to.meta.title == undefined?'在你左边,听风及雨':to.meta.title
    next();
})
 
 
/*导出路由模块*/
export default router