From ce3a6cde70dcc6107ce83e685e6acf7f6ffde033 Mon Sep 17 00:00:00 2001 From: waruneeauy Date: Wed, 19 Feb 2025 13:34:23 +0700 Subject: [PATCH] add router dashboard --- src/router/dashboard.ts | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/src/router/dashboard.ts b/src/router/dashboard.ts index f0750a9c4..cc0ee5ce8 100644 --- a/src/router/dashboard.ts +++ b/src/router/dashboard.ts @@ -19,6 +19,33 @@ export default [ Key: "DASHBOARD_REGISTRY", }, }, + { + path: "/dashboard/compete", + name: "dashboardCompete", + component: DashboardAll, + meta: { + Auth: true, + Key: "DASHBOARD_COMPETE", + }, + }, + { + path: "/dashboard/qualify", + name: "dashboardQualify", + component: DashboardAll, + meta: { + Auth: true, + Key: "DASHBOARD_QUALIFY", + }, + }, + { + path: "/dashboard/qualify-disable", + name: "dashboardQualifyDis", + component: DashboardAll, + meta: { + Auth: true, + Key: "DASHBOARD_QUALIFYDIS", + }, + }, { path: "/dashboard/leave", name: "dashboardLeave",