29 lines
843 B
TypeScript
29 lines
843 B
TypeScript
import { RouteRecordRaw } from 'vue-router';
|
|
|
|
const routes: RouteRecordRaw[] = [
|
|
{
|
|
path: '/',
|
|
component: () => import('layouts/MainLayout.vue'),
|
|
children: [
|
|
{ path: '', component: () => import('pages/IndexPage.vue') },
|
|
{ path: 'ruleEditor', component: () => import('pages/RuleEditor.vue') },
|
|
{ path: 'flowEditor', component: () => import('pages/FlowEditorPage.vue') }
|
|
],
|
|
children: [{ path: '', component: () => import('pages/IndexPage.vue') }],
|
|
},
|
|
{
|
|
path: '/test/',
|
|
children: [{ path: '', component: () => import('pages/testQursar.vue') }],
|
|
component: () => import('layouts/MainLayout.vue'),
|
|
},
|
|
|
|
// Always leave this as last one,
|
|
// but you can also remove it
|
|
{
|
|
path: '/:catchAll(.*)*',
|
|
component: () => import('pages/ErrorNotFound.vue'),
|
|
},
|
|
];
|
|
|
|
export default routes;
|