Add initial compliance intro page
This commit is contained in:
parent
c393f6fd81
commit
20614acb86
12 changed files with 117 additions and 81 deletions
|
|
@ -1,5 +1,6 @@
|
|||
import { createRouter, createWebHistory } from "vue-router";
|
||||
import type { RouteRecordRaw } from "vue-router";
|
||||
import Compliance from "@/rmo/view/Compliance.vue";
|
||||
import HomeBase from "@/rmo/view/Home.vue";
|
||||
import HomeDistrict from "@/rmo/view/district/Home.vue";
|
||||
import NuisanceBase from "@/rmo/view/Nuisance.vue";
|
||||
|
|
@ -25,6 +26,12 @@ const routes: RouteRecordRaw[] = [
|
|||
component: HomeDistrict,
|
||||
props: true,
|
||||
},
|
||||
{
|
||||
path: "/district/:slug/compliance",
|
||||
name: "Compliance",
|
||||
component: Compliance,
|
||||
props: true,
|
||||
},
|
||||
{
|
||||
path: "/district/:slug/nuisance",
|
||||
name: "NuisanceDistrict",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue