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