2024-08-09 10:57:46 +08:00
|
|
|
import type { RouteRecordRaw } from 'vue-router';
|
|
|
|
|
|
|
|
import { BasicLayout } from '#/layouts';
|
|
|
|
import { $t } from '#/locales';
|
|
|
|
|
|
|
|
const routes: RouteRecordRaw[] = [
|
|
|
|
{
|
|
|
|
component: BasicLayout,
|
|
|
|
meta: {
|
|
|
|
icon: 'ion:layers-outline',
|
|
|
|
keepAlive: true,
|
|
|
|
order: 1000,
|
|
|
|
title: $t('page.examples.title'),
|
|
|
|
},
|
|
|
|
name: 'Examples',
|
|
|
|
path: '/examples',
|
|
|
|
children: [
|
2024-08-25 23:40:52 +08:00
|
|
|
{
|
|
|
|
name: 'ModalExample',
|
|
|
|
path: '/examples/modal',
|
|
|
|
component: () => import('#/views/examples/modal/index.vue'),
|
|
|
|
meta: {
|
|
|
|
title: $t('page.examples.modal.title'),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'DrawerExample',
|
|
|
|
path: '/examples/drawer',
|
|
|
|
component: () => import('#/views/examples/drawer/index.vue'),
|
|
|
|
meta: {
|
|
|
|
title: $t('page.examples.drawer.title'),
|
|
|
|
},
|
|
|
|
},
|
2024-09-01 22:33:11 +08:00
|
|
|
{
|
|
|
|
name: 'EllipsisExample',
|
|
|
|
path: '/examples/ellipsis',
|
|
|
|
component: () => import('#/views/examples/ellipsis/index.vue'),
|
|
|
|
meta: {
|
|
|
|
title: $t('page.examples.ellipsis.title'),
|
|
|
|
},
|
|
|
|
},
|
2024-08-09 10:57:46 +08:00
|
|
|
],
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
export default routes;
|