mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-09-20 10:36:38 +08:00
10 lines
367 B
TypeScript
10 lines
367 B
TypeScript
import SIGNLE from './_single'; // 没有子菜单的单独页面
|
|
import DASHBOARD from './dashboard';
|
|
import DOCUMENT from './document';
|
|
import COMPONENT from './component';
|
|
import EXCEPTION from './exception';
|
|
import MULTI_MENU from './multiMenu';
|
|
import ABOUT from './about';
|
|
|
|
export default [SIGNLE, DASHBOARD, DOCUMENT, COMPONENT, EXCEPTION, MULTI_MENU, ABOUT];
|