Add RMO water page, start district layout

This commit is contained in:
Eli Ribble 2026-04-03 16:37:09 +00:00
parent fd7607f5b7
commit 4f9617aa2f
No known key found for this signature in database
6 changed files with 664 additions and 627 deletions

View file

@ -2,6 +2,7 @@ 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";
import Water from "@/rmo/view/Water.vue";
const routes: RouteRecordRaw[] = [
{
path: "/",
@ -13,6 +14,11 @@ const routes: RouteRecordRaw[] = [
name: "Nuisance",
component: Nuisance,
},
{
path: "/water",
name: "Water",
component: Water,
},
];
export const router = createRouter({