From 72570e11a219258e518347b3d2da230683add767 Mon Sep 17 00:00:00 2001 From: dyhj625 Date: Tue, 18 Mar 2025 10:57:13 +0900 Subject: [PATCH] =?UTF-8?q?=EB=A1=9C=EA=B7=B8=EC=9D=B8=EC=95=88=ED=95=98?= =?UTF-8?q?=EA=B3=A0=20=EA=B2=BD=EB=A1=9C=EB=A1=9C=20=EB=93=A4=EC=96=B4?= =?UTF-8?q?=EA=B0=88=EB=95=8C=20=EB=AA=A8=EB=93=A0=20=EB=A9=94=EB=89=B4=20?= =?UTF-8?q?=EB=A7=89=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/index.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/router/index.js b/src/router/index.js index e5a575d..0db5705 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -13,6 +13,7 @@ const routes = [ { path: '/board', component: () => import('@v/board/TheBoard.vue'), + meta: { requiresAuth: true }, children: [ { path: '', @@ -38,6 +39,7 @@ const routes = [ { path: '/wordDict', component: () => import('@v/wordDict/wordDict.vue'), + meta: { requiresAuth: true } }, { path: '/login', @@ -60,10 +62,12 @@ const routes = [ { path: '/vacation', component: () => import('@v/vacation/VacationManagement.vue'), + meta: { requiresAuth: true } }, { path: '/voteboard', component: () => import('@v/voteboard/TheVoteBoard.vue'), + meta: { requiresAuth: true }, children: [ { path: '', @@ -79,10 +83,12 @@ const routes = [ { path: '/projectlist', component: () => import('@v/projectlist/TheProjectList.vue'), + meta: { requiresAuth: true } }, { path: '/commuters', component: () => import('@v/commuters/TheCommuters.vue'), + meta: { requiresAuth: true } }, { path: '/authorization',