25 lines
436 B
TypeScript
25 lines
436 B
TypeScript
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',
|
|
tag: {
|
|
dot: true,
|
|
},
|
|
|
|
children: [
|
|
{
|
|
path: 'flowChart',
|
|
name: t('routes.demo.flow.flowChart'),
|
|
tag: {
|
|
content: 'new',
|
|
},
|
|
},
|
|
],
|
|
},
|
|
};
|
|
export default menu;
|