mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-10-14 20:01:28 +00:00
feat: Implement visualizing alarm (#23)
This commit is contained in:
@@ -33,10 +33,9 @@ export const routesAlarm: Array<RouteRecordRaw> = [
|
||||
path: "/alarm",
|
||||
name: "Alarm",
|
||||
meta: {
|
||||
title: "alarmList",
|
||||
exact: false,
|
||||
},
|
||||
component: () => import("@/views/Log.vue"),
|
||||
component: () => import("@/views/Alarm.vue"),
|
||||
},
|
||||
],
|
||||
},
|
||||
|
@@ -21,7 +21,6 @@ import { routesMesh } from "./serviceMesh";
|
||||
import { routesDatabase } from "./database";
|
||||
import { routesInfra } from "./infrastructure";
|
||||
import { routesDashboard } from "./dashboard";
|
||||
// import { routesLog } from "./log";
|
||||
import { routesEvent } from "./event";
|
||||
import { routesSetting } from "./setting";
|
||||
import { routesAlarm } from "./alarm";
|
||||
@@ -32,9 +31,9 @@ const routes: Array<RouteRecordRaw> = [
|
||||
...routesDatabase,
|
||||
...routesInfra,
|
||||
...routesDashboard,
|
||||
...routesAlarm,
|
||||
...routesEvent,
|
||||
...routesSetting,
|
||||
...routesAlarm,
|
||||
];
|
||||
|
||||
const router = createRouter({
|
||||
|
Reference in New Issue
Block a user