uptime-kuma/src/router.js

86 lines
2.7 KiB
JavaScript
Raw Normal View History

import { createRouter, createWebHistory } from "vue-router";
import EmptyLayout from "./layouts/EmptyLayout.vue";
import Layout from "./layouts/Layout.vue";
import Dashboard from "./pages/Dashboard.vue";
import DashboardHome from "./pages/DashboardHome.vue";
import Details from "./pages/Details.vue";
import EditMonitor from "./pages/EditMonitor.vue";
import List from "./pages/List.vue";
import Settings from "./pages/Settings.vue";
import Setup from "./pages/Setup.vue";
2021-09-13 23:19:23 -07:00
import StatusPage from "./pages/StatusPage.vue";
2021-09-22 22:57:24 -07:00
import Entry from "./pages/Entry.vue";
const routes = [
{
path: "/",
2021-09-22 22:57:24 -07:00
component: Entry,
},
{
2021-09-24 00:00:52 -07:00
// If it is "/dashboard", the active link is not working
// If it is "", it overrides the "/" unexpectedly
// Give a random name to solve the problem.
path: "/empty",
component: Layout,
children: [
{
path: "",
component: Dashboard,
children: [
{
name: "DashboardHome",
2021-09-24 00:00:52 -07:00
path: "/dashboard",
component: DashboardHome,
children: [
{
path: "/dashboard/:id",
component: EmptyLayout,
children: [
{
path: "",
component: Details,
},
{
path: "/edit/:id",
component: EditMonitor,
},
],
},
{
path: "/add",
component: EditMonitor,
},
{
path: "/list",
component: List,
},
],
},
{
path: "/settings",
component: Settings,
},
],
},
],
},
{
path: "/setup",
component: Setup,
},
2021-09-13 23:19:23 -07:00
{
path: "/status-page",
component: StatusPage,
},
{
path: "/status",
component: StatusPage,
},
2021-09-13 23:19:23 -07:00
];
export const router = createRouter({
linkActiveClass: "active",
history: createWebHistory(),
routes,
});