add router กก. และสร้าง =>Done

This commit is contained in:
watcharanondh 2023-06-08 15:58:33 +07:00
parent 46ce39d4ac
commit 04c0f68134
3 changed files with 518 additions and 4 deletions

View file

@ -4,6 +4,7 @@
const Main = () => import("@/modules/05_placement/views/Main.vue");
const Detail = () => import("@/modules/05_placement/components/PlacementDetail.vue");
const Domination = () => import("@/modules/05_placement/views/Domination.vue");
export default [
{
@ -26,5 +27,25 @@ export default [
Role: "placement",
},
},
{
path: "/placement/detail",
name: "placementDetail",
component: Detail,
meta: {
Auth: true,
Key: [7],
Role: "placement",
},
},
{
path: "/domination",
name: "domination",
component: Domination,
meta: {
Auth: true,
Key: [7],
Role: "placement",
},
},
];