flow.ts
436 Bytes
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;