uptime-kuma/src/router.js

79 lines
2.4 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-14 06:19:23 +00:00
import StatusPage from "./pages/StatusPage.vue";
2021-09-23 05:57:24 +00:00
import Entry from "./pages/Entry.vue";
const routes = [
{
path: "/",
2021-09-23 05:57:24 +00:00
component: Entry,
},
{
path: "/dashboard",
component: Layout,
children: [
{
path: "",
component: Dashboard,
children: [
{
name: "DashboardHome",
2021-09-23 05:57:24 +00:00
path: "",
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-14 06:19:23 +00:00
{
path: "/status-page",
component: StatusPage,
},
];
export const router = createRouter({
linkActiveClass: "active",
history: createWebHistory(),
routes,
});