vue-vben-admin/src/router/menus/modules/dashboard.ts

21 lines
398 B
TypeScript
Raw Normal View History

2020-09-28 20:19:10 +08:00
import type { MenuModule } from '/@/router/types.d';
2020-11-26 21:10:21 +08:00
2020-12-03 21:49:32 +08:00
const menu: MenuModule = {
orderNo: 10,
menu: {
name: 'routes.dashboard.dashboard',
path: '/dashboard',
children: [
{
path: '/workbench',
name: 'routes.dashboard.workbench',
},
{
path: '/analysis',
name: 'routes.dashboard.analysis',
},
],
2020-09-28 20:19:10 +08:00
},
2020-12-03 21:49:32 +08:00
};
2020-09-28 20:19:10 +08:00
export default menu;