mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-08-28 00:42:12 +08:00
fix: fix missing cache of refresh page
This commit is contained in:
23
src/router/menus/modules/dashboard.ts
Normal file
23
src/router/menus/modules/dashboard.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
import type { MenuModule } from '/@/router/types.d';
|
||||
const menu: MenuModule = {
|
||||
orderNo: 10,
|
||||
menu: {
|
||||
name: 'Dashboard',
|
||||
path: '/dashboard',
|
||||
children: [
|
||||
{
|
||||
path: '/workbench',
|
||||
name: '工作台',
|
||||
},
|
||||
{
|
||||
path: '/analysis',
|
||||
name: '分析页',
|
||||
},
|
||||
{
|
||||
path: '/welcome',
|
||||
name: '首页',
|
||||
},
|
||||
],
|
||||
},
|
||||
};
|
||||
export default menu;
|
Reference in New Issue
Block a user