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
| const { VITE_HIDE_HOME } = import.meta.env;
| const Layout = () => import("@/layout/index.vue");
|
| export default {
| path: "/",
| name: "Home",
| component: Layout,
| redirect: "/welcome",
| meta: {
| icon: "ep/home-filled",
| title: "首页",
| rank: 0
| },
| children: [
| {
| path: "/welcome",
| name: "Welcome",
| component: () => import("@/views/welcome/index.vue"),
| meta: {
| title: "首页",
| showLink: VITE_HIDE_HOME === "true" ? false : true
| }
| }
| ]
| } satisfies RouteConfigsTable;
|
|