-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathroutes.ts
More file actions
175 lines (173 loc) · 4.46 KB
/
routes.ts
File metadata and controls
175 lines (173 loc) · 4.46 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
import type { RouteRecordRaw } from 'vue-router';
import type { Component } from 'vue';
import Index from './pages/Index.vue';
import Alert from './pages/components/Alert.vue';
import TypeScale from './pages/base-concepts/TypeScale.vue';
import ControlsDimensions from './pages/base-concepts/ControlsDimensions.vue';
import Sizes from './pages/base-concepts/Sizes.vue';
import BaseAndAccent from './pages/theming/BaseAndAccent.vue';
import Themes from './pages/theming/Themes.vue';
import Colors from './pages/theming/Colors.vue';
import ColorScheme from './pages/theming/ColorScheme.vue';
import Button from './pages/components/Button.vue';
import Input from './pages/components/Input.vue';
import Field from './pages/components/Field.vue';
import Avatar from './pages/components/Avatar.vue';
import Card from './pages/components/Card.vue';
import Checkbox from './pages/components/Checkbox.vue';
import Container from './pages/components/Container.vue';
import Fieldset from './pages/components/Fieldset.vue';
import Icon from './pages/components/Icon.vue';
import ColorShemeIcons from './pages/components/ColorShemeIcons.vue';
import Popover from './pages/components/Popover.vue';
import Row from './pages/components/Row.vue';
import Section from './pages/components/Section.vue';
import Select from './pages/components/Select.vue';
import Switch from './pages/components/Switch.vue';
import Tabbar from './pages/components/Tabbar.vue';
import VerticalMenu from './pages/components/VerticalMenu.vue';
import ContextMenu from './pages/components/ContextMenu.vue';
import Editor from './pages/components/Editor.vue';
import ThemePreview from './pages/components/ThemePreview.vue';
import Popup from './pages/components/Popup.vue';
import Confirm from './pages/components/Confirm.vue';
import Navbar from './pages/layout/Navbar.vue';
import PageBlock from './pages/layout/PageBlock.vue';
/**
* Vue router routes list
*/
const routes: RouteRecordRaw[] = [
{
path: '/',
component: Index as Component,
},
{
path: '/alert',
component: Alert as Component,
},
{
path: '/type-scale',
component: TypeScale as Component,
},
{
path: '/controls-dimensions',
component: ControlsDimensions as Component,
},
{
path: '/sizes',
component: Sizes as Component,
},
{
path: '/theming/themes',
component: Themes as Component,
},
{
path: '/theming/colors',
component: Colors as Component,
},
{
path: '/theming/color-scheme',
component: ColorScheme as Component,
},
{
path: '/theming/base-and-accent',
component: BaseAndAccent as Component,
},
{
path: '/components/button',
component: Button as Component,
},
{
path: '/components/input',
component: Input as Component,
},
{
path: '/components/field',
component: Field as Component,
},
{
path: '/components/row',
component: Row as Component,
},
{
path: '/components/section',
component: Section as Component,
},
{
path: '/components/select',
component: Select as Component,
},
{
path: '/components/switch',
component: Switch as Component,
},
{
path: '/components/tabbar',
component: Tabbar as Component,
},
{
path: '/components/vertical-menu',
component: VerticalMenu as Component,
},
{
path: '/components/avatar',
component: Avatar as Component,
},
{
path: '/components/card',
component: Card as Component,
},
{
path: '/components/checkbox',
component: Checkbox as Component,
},
{
path: '/components/container',
component: Container as Component,
},
{
path: '/components/fieldset',
component: Fieldset as Component,
},
{
path: '/components/icon',
component: Icon as Component,
},
{
path: '/components/color-sheme-icons',
component: ColorShemeIcons as Component,
},
{
path: '/components/popover',
component: Popover as Component,
},
{
path: '/components/context-menu',
component: ContextMenu as Component,
},
{
path: '/components/editor',
component: Editor as Component,
},
{
path: '/components/theme-preview',
component: ThemePreview as Component,
},
{
path: '/components/popup',
component: Popup as Component,
},
{
path: '/components/confirm',
component: Confirm as Component,
},
{
path: '/layout/navbar',
component: Navbar as Component,
},
{
path: '/layout/page-block',
component: PageBlock as Component,
},
];
export default routes;