feat: manage mints and move funds settings pages

This commit is contained in:
2026-08-19 22:27:14 +02:00
parent 142734b903
commit f631c7c264
4 changed files with 855 additions and 12 deletions
+8
View File
@@ -7,6 +7,14 @@ const routes: RouteRecordRaw[] = [
children: [
{ path: '', component: () => import('@/pages/IndexPage.vue') },
{ path: 'settings', component: () => import('@/pages/SettingsPage.vue') },
{
path: 'settings/mints',
component: () => import('@/pages/ManageMintsPage.vue'),
},
{
path: 'settings/move',
component: () => import('@/pages/MoveFundsPage.vue'),
},
],
},
{