character rules

This commit is contained in:
Sirttas
2026-05-23 23:47:06 +02:00
parent e233e609e6
commit a1dbe41b6c
8 changed files with 65 additions and 22 deletions
+6 -3
View File
@@ -4,11 +4,14 @@ 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/Ledgers.vue'), children: [
{path: '', component: () => import('./pages/ledger/ListLedgers.vue')},
{path: '/ledgers', component: () => import('@/pages/Ledgers.vue'), children: [
{path: '', component: () => import('@/pages/ledger/ListLedgers.vue')},
]},
{path: '/rules', component: () => import('@/pages/Rules.vue')},
{path: '/rules', component: () => import('@/pages/Rules.vue'), children: [
{path: '', component: () => import('./pages/rules/ListRuleBooks.vue')},
{path: ':characterId', name: 'character-rulebook', component: () => import('@/pages/rules/EditRuleBook.vue')},
]},
{path: '/market', component: () => import('@/pages/Market.vue'), children: [
{path: '', redirect: '/market/types'},