Skip to content

Commit 74f558e

Browse files
committed
✨ [feat] : 카테고리 생성 페이지 라우터 설정
1 parent 2818d50 commit 74f558e

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

src/router/index.ts

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,31 @@ const router = createRouter({
126126
path: '/statistics',
127127
name: 'Statistics',
128128
component: () => import('../views/StatisticsView.vue')
129+
},
130+
{
131+
path: '/edit-information',
132+
name: 'EditInformation',
133+
component: () => import('../views/EditInformationView.vue')
134+
},
135+
{
136+
path: '/task-management',
137+
name: 'TaskManagement',
138+
component: () => import('../views/TaskManagementView.vue')
139+
},
140+
{
141+
path: '/edit-information',
142+
name: 'EditInformation',
143+
component: () => import('../views/EditInformationView.vue')
144+
},
145+
{
146+
path: '/statistics',
147+
name: 'Statistics',
148+
component: () => import('../views/StatisticsView.vue')
149+
},
150+
{
151+
path: '/task-detail',
152+
name: 'TaskDetail',
153+
component: () => import('../views/TaskDetailView.vue')
129154
}
130155
]
131156
})

0 commit comments

Comments
 (0)