添加菜单页面.

This commit is contained in:
lijiahang
2023-08-08 17:59:37 +08:00
parent d86b301628
commit f2251e6c65
25 changed files with 1078 additions and 45 deletions

View File

@@ -0,0 +1,17 @@
import { DEFAULT_LAYOUT } from '../base';
import { AppRouteRecordRaw } from '../types';
const MENU: AppRouteRecordRaw = {
name: 'menu',
path: '/system',
component: DEFAULT_LAYOUT,
children: [
{
name: 'systemMenu',
path: '/system/menu',
component: () => import('@/views/system/menu/index.vue'),
},
],
};
export default MENU;