Add nuisance view for RMO
This commit is contained in:
parent
64a8de7a32
commit
fd7607f5b7
4 changed files with 422 additions and 410 deletions
|
|
@ -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({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue