diff --git a/src/router/index.js b/src/router/index.js index 35b655d..4c9e9a9 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -139,6 +139,12 @@ const router = createRouter({ component: () => import('../views/account/AccountWalletView.vue'), meta: { requiresAuth: true }, }, + { + path: '/account/wallets/:id', + name: 'account-wallet-detail', + component: () => import('../views/account/AccountWalletDetailView.vue'), + meta: { requiresAuth: true }, + }, { path: '/account/categories', name: 'account-categories', diff --git a/src/views/account/AccountWalletDetailView.vue b/src/views/account/AccountWalletDetailView.vue new file mode 100644 index 0000000..7cfd69b --- /dev/null +++ b/src/views/account/AccountWalletDetailView.vue @@ -0,0 +1,302 @@ + + + + + diff --git a/src/views/account/AccountWalletView.vue b/src/views/account/AccountWalletView.vue index 960987e..8ad6da9 100644 --- a/src/views/account/AccountWalletView.vue +++ b/src/views/account/AccountWalletView.vue @@ -1,5 +1,6 @@