1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| export const baseRouter = [
| {
| path: "/:pathMatch(.*)*",
| name: "404",
| meta: {
| title: "找不到页面",
| hidden: true
| },
| // eslint-disable-next-line @syyfe/validate-router
| component: (): any => import("@/views/404/index.vue")
| },
| {
| path: "/login",
| name: "login",
| meta: {
| title: "登录",
| hidden: true
| },
| component: (): any => import("@/views/login/index.vue")
| }
| ];
|
|