dashboard.ts 642 Bytes
import type { MenuModule } from '/@/router/types';
import { t } from '/@/hooks/web/useI18n';

const menu: MenuModule = {
  orderNo: 10,
  menu: {
    name: t('routes.dashboard.dashboard'),
    path: '/dashboard',
    tag: {
      dot: true,
      type: 'warn',
    },
    children: [
      {
        path: 'analysis',
        name: t('routes.dashboard.analysis'),
        tag: {
          dot: true,
          type: 'warn',
        },
      },
      {
        path: 'workbench',
        name: t('routes.dashboard.workbench'),
        tag: {
          dot: true,
          type: 'warn',
        },
      },
    ],
  },
};
export default menu;