29 lines
573 B
TypeScript
29 lines
573 B
TypeScript
![]() |
import type { RouteRecordRaw } from 'vue-router';
|
||
|
|
||
|
import { $t } from '#/locales';
|
||
|
|
||
|
const routes: RouteRecordRaw[] = [
|
||
|
{
|
||
|
meta: {
|
||
|
icon: 'ion:settings-outline',
|
||
|
order: 9997,
|
||
|
title: $t('system.title'),
|
||
|
},
|
||
|
name: 'System',
|
||
|
path: '/system',
|
||
|
children: [
|
||
|
{
|
||
|
path: '/system/dept',
|
||
|
name: 'SystemDept',
|
||
|
meta: {
|
||
|
icon: 'charm:organisation',
|
||
|
title: $t('system.dept.title'),
|
||
|
},
|
||
|
component: () => import('#/views/system/dept/list.vue'),
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
];
|
||
|
|
||
|
export default routes;
|