Blame view

src/router/menus/modules/demo/flow.ts 436 Bytes
Vben authored
1
2
3
4
5
6
7
8
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',
Vben authored
9
10
11
    tag: {
      dot: true,
    },
Vben authored
12
13
14
15
16

    children: [
      {
        path: 'flowChart',
        name: t('routes.demo.flow.flowChart'),
Vben authored
17
18
19
        tag: {
          content: 'new',
        },
Vben authored
20
21
22
23
24
      },
    ],
  },
};
export default menu;