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: {