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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
import main from '../components/layouts/main.vue'
import main1 from '../components/layouts/main1-show.vue'
import main2 from '../components/layouts/main2-show.vue'
import main3 from '../components/layouts/main3-show.vue'
import box6 from '../components/layouts/box6-articleList.vue'
import box1 from '../components/layouts/box1-info.vue'
import box2 from '../components/layouts/box2-class.vue'
import tagTime from '../components/layouts/tag-time.vue'
import tagInfo from '../components/layouts/tagInfo.vue'
import mdDetail from '../components/layouts/mdDetail.vue'
 
 
export const asyncRouterMap = [{
        path: '*',
        // redirect: '/404',
        component: () => import( /* webpackChunkName: "fail" */ '@/views/exception/404'),
        hidden: true
    },
    {
        path: '/',
        component: main,
        children: [{
                path: '/',
                component: main1,
                children: [{
                        path: '/',
                        component: box6,
                    },
                    {
                        path: '/box1',
                        component: box1,
                    },
                    {
                        path: '/tagTime',
                        component: tagTime,
                    },
                    {
                        path: '/tagInfo',
                        component: tagInfo,
                    },
                    {
                        path: '/mdDetail',
                        component: mdDetail,
                    }
                ]
            },
            {
                path: '/main1',
                component: main1,
                children: [{
                    path: '/',
                    component: box6,
                }]
            },
            
            {
                path: '/main2',
                component: main2,
            },
            {
                path: '/main3',
                component: main3,
            },
            
 
        ]
    },
 
 
]
 
 
/**
 * 基础路由
 * @type { *[] }
 */
export const constantRouterMap = [{
        path: '/404',
        component: () => import( /* webpackChunkName: "fail" */ '@/views/exception/404')
    }
 
]