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
| import type { App } from "vue";
| import { createRouter, createWebHashHistory, type RouteRecordRaw } from "vue-router";
|
| export const Layout = () => import("@/layout/index.vue");
|
| // 静态路由
| export const constantRoutes: RouteRecordRaw[] = [
| {
| path: "/redirect",
| component: Layout,
| meta: { hidden: true },
| children: [
| {
| path: "/redirect/:path(.*)",
| component: () => import("@/views/redirect/index.vue"),
| },
| ],
| },
|
| {
| path: "/login",
| component: () => import("@/views/login/index.vue"),
| meta: { hidden: true },
| },
|
| {
| path: "/",
| name: "/",
| component: Layout,
| redirect: "/dashboard",
| children: [
| {
| path: "dashboard",
| component: () => import("@/views/dashboard/index.vue"),
| name: "Dashboard",
| meta: {
| title: "软件包管理",
| icon: "homepage",
| affix: true,
| keepAlive: true,
| },
| },
| {
| path: "profile",
| name: "Profile",
| component: () => import("@/views/profile/index.vue"),
| meta: { title: "个人中心", icon: "user", hidden: true },
| },
| {
| path: "401",
| component: () => import("@/views/error/401.vue"),
| meta: { hidden: true },
| },
| {
| path: "404",
| component: () => import("@/views/error/404.vue"),
| meta: { hidden: true },
| },
| ],
| },
| ];
|
| /**
| * 创建路由
| */
| const router = createRouter({
| history: createWebHashHistory(),
| routes: constantRoutes,
| // 刷新时,滚动条位置还原
| scrollBehavior: () => ({ left: 0, top: 0 }),
| });
|
| // 全局注册 router
| export function setupRouter(app: App<Element>) {
| app.use(router);
| }
|
| export default router;
|
|