index.ts
1.73 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
import { createRouter, createWebHashHistory } from 'vue-router'
import Resident from "./modules/resident"
import Property from "./modules/property"
import Community from "./modules/community"
import Layout from '@/layout/enter.vue'
const routes: Array<any> = [
{ path: '/', redirect: { path: '/dashboard' } },
{
path: '/home',
name: 'Home',
component: () => import(/* webpackChunkName: "Home" */ '@/views/tengxi/index.vue')
// component: () => import(/* webpackChunkName: "Home" */ '@/layout/enter.vue')
},
{
path: '/',
component: Layout,
name: 'About',
children: [{
path: 'About',
name: 'About',
component: () => import(/* webpackChunkName: "About" */ '@/views/tengxi/about.vue'),
meta: { title: '关于测试页' }
}]
// component: () => import(/* webpackChunkName: "About" */ '@/views/tengxi/about.vue')
},
{
path: '/',
component: Layout,
name: 'Dashboard',
children: [{
path: 'Dashboard',
name: 'Dashboard',
component: () => import(/* webpackChunkName: "About" */ '@/views/dashboard/index.vue'),
meta: { title: '欢迎访问' }
}]
// component: () => import(/* webpackChunkName: "About" */ '@/views/tengxi/about.vue')
},
Resident,
Property,
Community,
{
path: '/login',
name: 'Login',
component: () => import(/* webpackChunkName: "About" */ '@/views/user/login.vue')
},
{
path: '/404',
name: 'Error',
component: () => import(/* webpackChunkName: "Error" */ '@/views/error/404.vue'),
hidden: true
},
{
path: '/:pathMatch(.*)*',
redirect: '/404'
},
]
const router = createRouter({
scrollBehavior: () => ({ y: 0 }),
history: createWebHashHistory(),
routes
})
export default router