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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
| import baseLayout from '../components/layouts/baseLayout.vue'
|
| import articleList from '../components/group/articleListScorll.vue'
|
| import main1 from '../components/swichLabel/main1-home.vue'
| import platform from '../components/swichLabel/main2-music-search.vue'
| import main3 from '../components/swichLabel/main3-show.vue'
| import link from '../components/swichLabel/main4-link.vue'
| import login from '../components/swichLabel/main5-login.vue'
| import comment from '../components/swichLabel/main6-comment.vue'
|
| import box1 from '../components/mini/box1-info.vue'
| import tagTime from '../components/mini/tagTime.vue'
| import tagInfo from '../components/mini/tagInfo.vue'
| import boxFriend from '../components/mini/box-friend.vue'
| import mdDetail from '../components/mini/mdDetail.vue'
| import videoDetail from '../components/mini/box16-videoDetail.vue'
| import videoList from '../components/mini/box14-video.vue'
|
|
| export const asyncRouterMap = [{
| path: '*',
| redirect: '/404',
| // component: () => import( /* webpackChunkName: "fail" */ '@/views/exception/404'),
| hidden: true
| },
| {
| path: '/',
| component: baseLayout,
| children: [{
| path: '/',
| component: main1,
| children: [{
| path: '/',
| name: "home",
| component: articleList,
| props: true
| },
| {
| path: '/box1',
| component: box1,
| },
| {
| name: "tagTime",
| path: '/tagTime',
| component: tagTime,
| },
| {
| name: "comment",
| path: '/comment',
| component: comment,
| },
| {
| path: '/tagInfo',
| component: tagInfo,
| },
| {
| name: "mdDetail",
| path: '/mdDetail',
| component: mdDetail,
| }, {
| path: '/link',
| component: boxFriend,
| },
| {
| path: '/404',
| component: () => import('@/views/exception/404')
| }
| ]
| },
| {
| path: '/articleList',
| component: main1,
| children: [{
| path: '/',
| name: "articleList",
| component: articleList,
| }]
| },
|
| {
| path: '/platform',
| component: platform,
| children: [{
| path: '/',
| name: "videoList",
| component: videoList,
| },{
| path: '/videoDetail',
| name: "videoDetail",
| component: videoDetail,
| }]
| },
| {
| path: '/main3',
| component: main3,
| },
| {
| path: '/link',
| component: link,
| }, {
| path: '/login',
| component: login,
| },
|
|
| ]
| },
|
|
| ]
|
|
| /**
| * 基础路由
| * @type { *[] }
| */
| export const constantRouterMap = [{
| // path: '/404',
| // component: () => import( /* webpackChunkName: "fail" */ '@/views/exception/404')
| }
|
| ]
|
|