Skip to content

Commit

Permalink
Add mesh module
Browse files Browse the repository at this point in the history
Signed-off-by: rovast <rovast@163.com>
  • Loading branch information
rovast committed Sep 5, 2023
1 parent d144c65 commit db93057
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions src/router/modules/mesh.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
export default {
path: "/mesh",
name: "mesh",
redirect: "/mesh/index",
component: () => import("@/views/mesh/index.vue"),
meta: {
title: "Service Mesh",
rank: 40
},
children: [
{
path: "index",
name: "mesh.index",
component: () => import("@/views/mesh/index/index.vue"),
meta: {
title: "Dashboard",
icon: "carbon:dashboard"
}
},
{
path: "services",
name: "mesh.services",
component: () => import("@/views/mesh/services/index.vue"),
meta: {
title: "Services",
icon: "healthicons:provider-fst"
}
},
{
path: "fuse",
name: "mesh.fuse",
component: () => import("@/views/mesh/fuse/index.vue"),
meta: {
title: "Fuse",
icon: "mdi:fuse-off"
}
},
{
path: "rate",
name: "mesh.rate",
component: () => import("@/views/mesh/rate/index.vue"),
meta: {
title: "Rate Limit",
icon: "simple-icons:speedtest"
}
},
{
path: "logs",
name: "mesh.logs",
component: () => import("@/views/mesh/logs/index.vue"),
meta: {
title: "Logs",
icon: "ep:document"
}
}
]
} as RouteConfigsTable;

0 comments on commit db93057

Please sign in to comment.