Blame view

src/router/menus/modules/home.ts 242 Bytes
1
import type { MenuModule } from '/@/router/types';
2
import { t } from '/@/hooks/web/useI18n';
vben authored
3
4
5
6
7

const menu: MenuModule = {
  orderNo: 0,
  menu: {
    path: '/home/welcome',
8
    name: t('routes.dashboard.welcome'),
vben authored
9
10
11
  },
};
export default menu;