เพิ่ม maintenance

This commit is contained in:
kanyarat2001 2023-12-20 10:08:57 +07:00
parent ed323519ed
commit 6a699e0004
6 changed files with 771 additions and 135 deletions

View file

@ -7,6 +7,8 @@ const Organizational = () => import("@/modules/02_organizational/views/Main.vue"
const Contact = () => import("@/modules/00_contact/views/Main.vue");
const Maintenance = () => import("@/modules/001_Maintenance/views/Main.vue");
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes: [
@ -31,9 +33,18 @@ const router = createRouter({
name: "contact",
component: Contact,
},
{
path: "/maintenance",
name: "maintenance",
component: Maintenance,
},
]
},
]
})
export default router;