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', diff --git a/src/views/voteboard/voteBoardList.vue b/src/views/voteboard/voteBoardList.vue index aa077ae..550c3f8 100644 --- a/src/views/voteboard/voteBoardList.vue +++ b/src/views/voteboard/voteBoardList.vue @@ -22,7 +22,7 @@ -