Add nuisance view for RMO

This commit is contained in:
Eli Ribble 2026-04-03 16:08:57 +00:00
parent 64a8de7a32
commit fd7607f5b7
No known key found for this signature in database
4 changed files with 422 additions and 410 deletions

View file

@ -1,12 +1,18 @@
import { createRouter, createWebHistory } from "vue-router";
import type { RouteRecordRaw } from "vue-router";
import Home from "@/rmo/view/Home.vue";
import Nuisance from "@/rmo/view/Nuisance.vue";
const routes: RouteRecordRaw[] = [
{
path: "/",
name: "Home",
component: Home,
},
{
path: "/nuisance",
name: "Nuisance",
component: Nuisance,
},
];
export const router = createRouter({