ledger list and modal
This commit is contained in:
+18
-14
@@ -1,20 +1,24 @@
|
||||
import { RouteRecordRaw } from 'vue-router';
|
||||
import {RouteRecordRaw} from 'vue-router';
|
||||
|
||||
export const routes: RouteRecordRaw[] = [
|
||||
{ path: '/', name: 'home', component: () => import('@/pages/Index.vue') },
|
||||
{ path: '/callback', name: 'callback', component: () => import('@/pages/Index.vue') },
|
||||
{ path: '/ledger', component: () => import('@/pages/Ledgers.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') },
|
||||
{ path: 'tracking', component: () => import('@/pages/market/Tracking.vue') },
|
||||
{ path: 'acquisitions', component: () => import('@/pages/market/Acquisitions.vue') },
|
||||
] },
|
||||
{path: '/', name: 'home', component: () => import('@/pages/Index.vue')},
|
||||
{path: '/callback', name: 'callback', component: () => import('@/pages/Index.vue')},
|
||||
|
||||
{ path: '/reprocess', component: () => import('@/pages/Reprocess.vue') },
|
||||
{path: '/ledgers', component: () => import('@/pages/Ledger.vue'), children: [
|
||||
{path: '', component: () => import('./pages/ledger/ListLedgers.vue')},
|
||||
]},
|
||||
|
||||
{ path: '/tools', component: () => import('@/pages/Tools.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')},
|
||||
{path: 'tracking', component: () => import('@/pages/market/Tracking.vue')},
|
||||
{path: 'acquisitions', component: () => import('@/pages/market/Acquisitions.vue')},
|
||||
]},
|
||||
|
||||
{ path: '/characters', component: () => import('@/pages/Characters.vue') },
|
||||
{ path: '/about', name: 'about', component: () => import('@/pages/About.vue') },
|
||||
{path: '/reprocess', component: () => import('@/pages/Reprocess.vue')},
|
||||
|
||||
{path: '/tools', component: () => import('@/pages/Tools.vue')},
|
||||
|
||||
{path: '/characters', component: () => import('@/pages/Characters.vue')},
|
||||
{path: '/about', name: 'about', component: () => import('@/pages/About.vue')},
|
||||
];
|
||||
Reference in New Issue
Block a user