rules endpoint

This commit is contained in:
Sirttas
2026-05-23 16:03:48 +02:00
parent 4fbced2c70
commit 153dff6bc7
5 changed files with 134 additions and 1 deletions
+3 -1
View File
@@ -4,10 +4,12 @@ export const routes: RouteRecordRaw[] = [
{path: '/', name: 'home', component: () => import('@/pages/Index.vue')},
{path: '/callback', name: 'callback', component: () => import('@/pages/Index.vue')},
{path: '/ledgers', component: () => import('@/pages/Ledger.vue'), children: [
{path: '/ledgers', component: () => import('./pages/Ledgers.vue'), children: [
{path: '', component: () => import('./pages/ledger/ListLedgers.vue')},
]},
{path: '/rules', component: () => import('@/pages/Rules.vue')},
{path: '/market', component: () => import('@/pages/Market.vue'), children: [
{path: '', redirect: '/market/types'},
{path: 'types/:type?', name: 'market-types', component: () => import('@/pages/market/TypeInfo.vue')},