เพิ่ม ข้อมูล

This commit is contained in:
kanyarat2001 2024-01-12 17:31:41 +07:00
commit 6d3330c327
21 changed files with 2362 additions and 89 deletions

View file

@ -4,6 +4,14 @@ const MainLayout = () => import("@/views/MainLayout.vue");
const Metadata = () => import("@/modules/01_metadata/views/Main.vue");
const Organizational = () => import("@/modules/02_organizational/views/Main.vue");
const Registration = () => import("@/modules/03_registration/views/Main.vue");
const Registemployee = () => import("@/modules/04_registry-employee/views/Main.vue");
const Order = () => import("@/modules/05_order/views/Main.vue");
const Recruitmain = () => import("@/modules/06_recruitmain/views/Main.vue");
const Placement = () => import("@/modules/07_placement/views/Main.vue");
const Retirement = () => import("@/modules/08_retirement/views/Main.vue");
const Insignia = () => import("@/modules/09_insignia/views/Main.vue");
@ -42,11 +50,48 @@ const router = createRouter({
name: "contact",
component: Contact,
},
{
path: "/maintenance",
name: "maintenance",
component: Maintenance,
},
{
path: "/registemployee",
name: "Registemployee",
component: Registemployee,
},
{
path: "/order",
name: "Order",
component: Order
},
{
path: "/recruitmain",
name: "Recruitmain",
component: Recruitmain
},
{
path: "/placement",
name: "Placement",
component: Placement
},
{
path: "/retirement",
name: "Retirement",
component: Retirement
},
{
path: "/insignia",
name: "Insignia",
component: Insignia
},
]
},
]