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
| import { RouteRecordRaw } from "vue-router";
| import { HOME_URL, LOGIN_URL } from "@/config";
|
| /**
| * staticRouter (静态路由)
| */
| export const staticRouter: RouteRecordRaw[] = [
| {
| path: "/",
| redirect: HOME_URL
| },
| {
| path: LOGIN_URL,
| name: "login",
| component: () => import("@/views/login/index.vue"),
| meta: {
| title: "登录"
| }
| },
| {
| path: "/layout",
| name: "layout",
| component: () => import("@/layouts/index.vue"),
| // component: () => import("@/layouts/indexAsync.vue"),
| redirect: HOME_URL,
| children: []
| }
| ];
|
| /**
| * errorRouter (错误页面路由)
| */
| export const errorRouter = [
| {
| path: "/403",
| name: "403",
| component: () => import("@/components/ErrorMessage/403.vue"),
| meta: {
| title: "403页面"
| }
| },
| {
| path: "/404",
| name: "404",
| component: () => import("@/components/ErrorMessage/404.vue"),
| meta: {
| title: "404页面"
| }
| },
| {
| path: "/500",
| name: "500",
| component: () => import("@/components/ErrorMessage/500.vue"),
| meta: {
| title: "500页面"
| }
| },
| // Resolve refresh page, route warnings
| {
| path: "/:pathMatch(.*)*",
| component: () => import("@/components/ErrorMessage/404.vue")
| }
| ];
|
|