12 lines
600 B
TypeScript
12 lines
600 B
TypeScript
import { RouteRecordRaw } from 'vue-router';
|
|
|
|
export const routes: RouteRecordRaw[] = [
|
|
{ path: '/', component: () => import('@/pages/Index.vue') },
|
|
{ path: '/reprocess', component: () => import('@/pages/Reprocess.vue') },
|
|
{ path: '/market', component: () => import('@/pages/Market.vue'), children: [
|
|
{ path: '', redirect: '/market/scan' },
|
|
{ path: 'scan', component: () => import('@/pages/market/Scan.vue') },
|
|
{ path: 'track', component: () => import('@/pages/market/Track.vue') },
|
|
] },
|
|
{ path: '/tools', component: () => import('@/pages/Tools.vue') },
|
|
]; |