fix: fix missing cache of refresh page

This commit is contained in:
nebv
2020-10-13 22:22:04 +08:00
parent bbfb06f0ad
commit 02d6a39402
12 changed files with 54 additions and 40 deletions

View 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;