forked from kouchao/vue-layui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrouter.js
More file actions
123 lines (121 loc) · 2.09 KB
/
router.js
File metadata and controls
123 lines (121 loc) · 2.09 KB
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 Vue from 'vue'
import Router from 'vue-router'
import Home from './views/Home.vue'
import About from './views/About.vue'
import Grid from './views/Grid.vue'
import Button from './views/Button.vue'
import Form from './views/Form.vue'
import Nav from './views/Nav.vue'
import Badge from './views/Badge.vue'
import Auxiliar from './views/Auxiliar.vue'
import Progress from './views/Progress.vue'
import Panel from './views/Panel.vue'
import Timeline from './views/Timeline.vue'
import Table from './views/Table.vue'
import Tabs from './views/Tabs.vue'
import Animation from './views/Animation.vue'
import Admin from './views/Admin.vue'
import Layer from './views/Layer.vue'
import Laypage from './views/Laypage.vue'
import Rate from './views/Rate.vue'
import Slider from './views/Slider.vue'
Vue.use(Router)
export default new Router({
routes: [
{
path: '/',
name: 'home',
component: Home
},
{
path: '/about',
name: 'about',
component: About
},
{
path: '/grid',
name: 'grid',
component: Grid
},
{
path: '/button',
name: 'button',
component: Button
},
{
path: '/form',
name: 'form',
component: Form
},
{
path: '/nav',
name: 'nav',
component: Nav
},
{
path: '/badge',
name: 'badge',
component: Badge
},
{
path: '/auxiliar',
name: 'auxiliar',
component: Auxiliar
},
{
path: '/progress',
name: 'progress',
component: Progress
},
{
path: '/panel',
name: 'panel',
component: Panel
},
{
path: '/timeline',
name: 'timeline',
component: Timeline
},
{
path: '/table',
name: 'table',
component: Table
},
{
path: '/tabs',
name: 'tabs',
component: Tabs
},
{
path: '/animation',
name: 'animation',
component: Animation
},
{
path: '/admin',
name: 'admin',
component: Admin
},
{
path: '/layer',
name: 'layer',
component: Layer
},
{
path: '/laypage',
name: 'laypage',
component: Laypage
},
{
path: '/rate',
name: 'rate',
component: Rate
},
{
path: '/slider',
name: 'slider',
component: Slider
}
]
})