vue-vben-admin/src/router/menus/modules/demo/flow.ts

25 lines
436 B
TypeScript
Raw Normal View History

2021-04-17 18:36:49 +08:00
import type { MenuModule } from '/@/router/types';
import { t } from '/@/hooks/web/useI18n';
const menu: MenuModule = {
orderNo: 5000,
menu: {
name: t('routes.demo.flow.name'),
path: '/flow',
2021-04-17 18:39:18 +08:00
tag: {
dot: true,
},
2021-04-17 18:36:49 +08:00
children: [
{
path: 'flowChart',
name: t('routes.demo.flow.flowChart'),
2021-04-17 18:39:18 +08:00
tag: {
content: 'new',
},
2021-04-17 18:36:49 +08:00
},
],
},
};
export default menu;