transaction list display
This commit is contained in:
+4
-2
@@ -3,10 +3,11 @@ import {RouteRecordRaw} from 'vue-router';
|
||||
export const routeNames = {
|
||||
home: 'home',
|
||||
callback: 'callback',
|
||||
listLedgerTransactions: 'list-ledger-tTransactions',
|
||||
listRuleBooks: 'list-rule-books',
|
||||
newRuleBook: 'new-rule-book',
|
||||
editRuleBook: 'edit-rule-book',
|
||||
characterRulebook: 'character-rulebook',
|
||||
editCharacterRulebook: 'edit-character-rule-book',
|
||||
marketTypes: 'market-types',
|
||||
about: 'about',
|
||||
} as const;
|
||||
@@ -17,6 +18,7 @@ export const routes: RouteRecordRaw[] = [
|
||||
|
||||
{path: '/ledgers', component: () => import('@/pages/Ledgers.vue'), children: [
|
||||
{path: '', component: () => import('@/pages/ledger/ListLedgers.vue')},
|
||||
{path: ':ledgerId/transactions', name: routeNames.listLedgerTransactions, component: () => import('@/pages/ledger/ListLedgerTransactions.vue')},
|
||||
]},
|
||||
|
||||
{path: '/rules', component: () => import('@/pages/Rules.vue'), children: [
|
||||
@@ -28,7 +30,7 @@ export const routes: RouteRecordRaw[] = [
|
||||
]},
|
||||
{path: '/characters/rules', children: [
|
||||
{path: '', component: () => import('@/pages/rules/ListCharacterRuleBooks.vue')},
|
||||
{path: '/characters/:characterId/rules', name: routeNames.characterRulebook, component: () => import('@/pages/rules/EditCharacterRuleBook.vue')},
|
||||
{path: '/characters/:characterId/rules', name: routeNames.editCharacterRulebook, component: () => import('@/pages/rules/EditCharacterRuleBook.vue')},
|
||||
]}
|
||||
]},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user