From fff64a5b0dfde0d2e1789d1f27529677559f9e9d Mon Sep 17 00:00:00 2001 From: waruneeauy Date: Thu, 4 Apr 2024 15:34:57 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B9=81=E0=B8=81=E0=B9=89=20route=20KPI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/14_KPI/router.ts | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/modules/14_KPI/router.ts b/src/modules/14_KPI/router.ts index 5340ce8e3..11e95a72e 100644 --- a/src/modules/14_KPI/router.ts +++ b/src/modules/14_KPI/router.ts @@ -1,11 +1,13 @@ const roundPage = () => import("@/modules/14_KPI/views/round.vue"); -const IndicatorByPlan = () => import("@/modules/14_KPI/views/indicatorByPlan.vue"); -const IndicatorByRole = () => import("@/modules/14_KPI/views/indicatorByRole.vue"); +const IndicatorByPlan = () => + import("@/modules/14_KPI/views/indicatorByPlan.vue"); +const IndicatorByRole = () => + import("@/modules/14_KPI/views/indicatorByRole.vue"); const competencyPage = () => import("@/modules/14_KPI/views/competency.vue"); export default [ { - path: "/KPI", + path: "/KPI-round", name: "KPIRound", component: roundPage, meta: { @@ -15,7 +17,7 @@ export default [ }, }, { - path: "/KPI", + path: "/KPI-indicator-plan", name: "KPIIndicatorByPlan", component: IndicatorByPlan, meta: { @@ -25,7 +27,7 @@ export default [ }, }, { - path: "/KPI", + path: "/KPI-indicator-role", name: "KPIIndicatorByRole", component: IndicatorByRole, meta: { @@ -35,7 +37,7 @@ export default [ }, }, { - path: "/KPI", + path: "/KPI-competency", name: "KPICompetency", component: competencyPage, meta: {