mirror of
https://github.com/pure-admin/pure-admin-thin.git
synced 2025-04-24 23:47:17 +08:00
24 lines
513 B
TypeScript
24 lines
513 B
TypeScript
// src/router/modules/dashboard.ts
|
|
export default {
|
|
path: "/",
|
|
name: "Dashbroad",
|
|
redirect: "/dashboard/index",
|
|
meta: {
|
|
icon: "ri:dashboard-line",
|
|
title: "仪表盘",
|
|
rank: 0
|
|
},
|
|
component: () => import("@/layout/index.vue"),
|
|
children: [
|
|
{
|
|
path: "/dashboard/index",
|
|
name: "DashbroadIndex",
|
|
component: () => import("@/views/dashboard/index.vue"),
|
|
meta: {
|
|
title: "仪表盘首页",
|
|
showLink: true
|
|
}
|
|
}
|
|
]
|
|
} satisfies RouteConfigsTable;
|