export const GLOBAL_MENU_ITEMS = [ { name: 'Home', path: '/', mdiIcon: 'mdi-home', hasRouter: true }, { name: 'Profile', path: '/profile', mdiIcon: 'mdi-account', hasRouter: true }, { name: 'Master Data', path: '/master-data', mdiIcon: 'mdi-database-outline', hasRouter: false, children: [ { name: 'Students', path: '/master-data/students', mdiIcon: 'mdi-account-school', hasRouter: true }, { name: 'Subjects', path: '/subjects', mdiIcon: 'mdi-book-open-blank-variant-outline', hasRouter: true } ] }, // 可以继续添加更多菜单项 ];