From 063a5af82254791332f1a37736d12860004e0c64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=96=B9=20=E6=9F=8F?= Date: Fri, 8 Sep 2023 03:52:18 +0000 Subject: [PATCH] add right drawer --- frontend/src/pages/testFlow.vue | 1 + frontend/src/pages/testRight.vue | 101 +++++++++++++++++++++++++++++++ frontend/src/router/routes.ts | 5 ++ 3 files changed, 107 insertions(+) create mode 100644 frontend/src/pages/testRight.vue diff --git a/frontend/src/pages/testFlow.vue b/frontend/src/pages/testFlow.vue index 6b9c9ff..29ac791 100644 --- a/frontend/src/pages/testFlow.vue +++ b/frontend/src/pages/testFlow.vue @@ -9,6 +9,7 @@
プロパティ
+ diff --git a/frontend/src/pages/testRight.vue b/frontend/src/pages/testRight.vue new file mode 100644 index 0000000..fc47cdd --- /dev/null +++ b/frontend/src/pages/testRight.vue @@ -0,0 +1,101 @@ + + diff --git a/frontend/src/router/routes.ts b/frontend/src/router/routes.ts index c04f51b..d137a17 100644 --- a/frontend/src/router/routes.ts +++ b/frontend/src/router/routes.ts @@ -22,6 +22,11 @@ const routes: RouteRecordRaw[] = [ component: () => import('layouts/MainLayout.vue'), children: [{ path: '', component: () => import('pages/testFlow.vue') }], }, + { + path: '/right/', + component: () => import('layouts/MainLayout.vue'), + children: [{ path: '', component: () => import('pages/testRight.vue') }], + }, // Always leave this as last one, // but you can also remove it