routes.js
816 Bytes
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
const routes = [
{
path: '/',
component: () => import('layouts/Main.vue'),
children: [
{
path: '/usuarios',
component: () => import('pages/Users')
},
{
path: '/itens',
component: () => import('pages/Itens')
},
{
path: '/tags',
component: () => import('pages/Tags')
},
{
path: '/tipositens',
component: () => import('pages/TypeItens')
},
{
path: '/algoritmos',
component: () => import('pages/Algorithm')
}
]
},
{
path: '/login',
component: () => import('layouts/Login.vue')
},
// Always leave this as last one,
// but you can also remove it
{
path: '*',
component: () => import('pages/Error404.vue')
}
]
export default routes