diff --git a/frontend/src/layouts/MainLayout.vue b/frontend/src/layouts/MainLayout.vue
index 83d81f5..44db210 100644
--- a/frontend/src/layouts/MainLayout.vue
+++ b/frontend/src/layouts/MainLayout.vue
@@ -47,11 +47,18 @@ const essentialLinks: EssentialLinkProps[] = [
link: '/',
target: '_self'
},
+ // {
+ // title: 'フローエディター',
+ // caption: 'イベントを設定する',
+ // icon: 'account_tree',
+ // link: '/#/FlowChart',
+ // target: '_self'
+ // },
{
- title: 'フローエディター',
- caption: 'イベントを設定する',
- icon: 'account_tree',
- link: '/#/FlowChart',
+ title: 'アプリ管理',
+ caption: 'アプリを管理する',
+ icon: 'widgets',
+ link: '/#/app',
target: '_self'
},
// {
diff --git a/frontend/src/pages/AppManagement.vue b/frontend/src/pages/AppManagement.vue
new file mode 100644
index 0000000..bf2ed31
--- /dev/null
+++ b/frontend/src/pages/AppManagement.vue
@@ -0,0 +1,93 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/router/routes.ts b/frontend/src/router/routes.ts
index f7c6d02..cb037a9 100644
--- a/frontend/src/router/routes.ts
+++ b/frontend/src/router/routes.ts
@@ -27,6 +27,7 @@ const routes: RouteRecordRaw[] = [
{ path: 'domain', component: () => import('pages/TenantDomain.vue') },
{ path: 'userdomain', component: () => import('pages/UserDomain.vue')},
{ path: 'user', component: () => import('pages/UserManagement.vue')},
+ { path: 'app', component: () => import('pages/AppManagement.vue')},
{ path: 'condition', component: () => import('pages/conditionPage.vue') }
],
},