fix: eslint errors

This commit is contained in:
hw
2025-10-30 16:33:33 +08:00
parent 8e174a8308
commit 20f838adde
51 changed files with 4433 additions and 21 deletions

View File

@@ -0,0 +1,9 @@
/** 菜单未选中标识 */
export const MENU_NOT_SELECTED = '__MENU_NOT_SELECTED__';
/** 菜单级别枚举 */
export enum Level {
Child = '2',
Parent = '1',
Undefined = '0',
}