43 lines
890 B
TypeScript
43 lines
890 B
TypeScript
import type { RouteRecordRaw } from 'vue-router';
|
|
|
|
const routes: RouteRecordRaw[] = [
|
|
{
|
|
path: '/',
|
|
component: () => import('layouts/MainLayout.vue'),
|
|
children: [
|
|
{
|
|
path: '',
|
|
name: 'home',
|
|
redirect: {
|
|
name: 'Leaflet',
|
|
},
|
|
},
|
|
{
|
|
path: 'leaflet',
|
|
name: 'Leaflet',
|
|
component: () => import('pages/IndexPage.vue'),
|
|
},
|
|
{
|
|
path: 'test',
|
|
name: 'Test',
|
|
component: () => import('pages/TestPage.vue'),
|
|
},
|
|
{
|
|
path: 'device-info',
|
|
name: 'DeviceInfo',
|
|
component: () => import('pages/DeviceInfo.vue'),
|
|
},
|
|
],
|
|
},
|
|
|
|
// Always leave this as last one,
|
|
// but you can also remove it
|
|
{
|
|
path: '/:catchAll(.*)*',
|
|
name: 'ErrorNotFound',
|
|
component: () => import('pages/ErrorNotFound.vue'),
|
|
},
|
|
];
|
|
|
|
export default routes;
|