From c45464a30e5614151dfa84c1f530e415c1fe58ec Mon Sep 17 00:00:00 2001 From: yoon Date: Thu, 9 Jan 2025 10:57:49 +0900 Subject: [PATCH] =?UTF-8?q?=EB=A1=9C=EA=B7=B8=EC=9D=B8,=20=EB=93=B1?= =?UTF-8?q?=EB=A1=9D=EC=8B=A0=EC=B2=AD=20routes=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/index.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/router/index.js b/src/router/index.js index 30eaabd..62f695d 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -31,6 +31,11 @@ const routes = [ component: () => import('@v/user/TheLogin.vue'), meta: { layout: 'NoLayout' }, }, + { + path: '/register', + component: () => import('@v/user/TheRegister.vue'), + meta: { layout: 'NoLayout' }, + }, { path: '/sample', component: () => import('@c/calendar/SampleCalendar.vue'),