-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathrouter.js
67 lines (63 loc) · 1.43 KB
/
router.js
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
/**
* Created by zyupo on 2017/04/20.
* https://github.com/openspug/spug
*/
import Home from './components/Home.vue'
import Deny from './components/Deny.vue'
import Welcome from './components/Welcome.vue'
import Login from './components/Login.vue'
import Layout from './components/Layout.vue'
import account_routes from './components/account/routes'
import system_routes from './components/system/routes'
const routes = [
{
path: '',
name: 'home',
component: Home
},
{
path: '/welcome',
name: 'welcome',
component: Welcome
},
{
path: 'account',
routes: account_routes
},
{
path: 'system',
routes: system_routes
},
{
path: '*',
redirect: '/'
}
];
function load_route(routes) {
let result = [];
for (let route of routes) {
if (route.hasOwnProperty('routes') && Array.isArray(route.routes)) {
for (let sub_route of load_route(route.routes)) {
sub_route.path = route.path + '/' + sub_route.path;
result.push(sub_route)
}
} else {
result.push(route)
}
}
return result
}
export default [
{
path: '/login',
name: 'login',
component: Login
}, {
path: '/deny',
component: Deny
}, {
path: '/',
component: Layout,
children: load_route(routes)
}
]