fix: 🐛 修复菜单类型打包类型警告问题

This commit is contained in:
Ray.Hao
2025-08-22 09:34:43 +08:00
parent 07206576a8
commit e37a6c5aa4
2 changed files with 2 additions and 2 deletions

View File

@@ -42,7 +42,7 @@ export interface MenuQuery {
/** 搜索关键字 */
keywords?: string;
}
export type MenuTypeEnum = 0 | 1 | 2;
import type { MenuTypeEnum } from "@/enums/system/menu.enum";
export interface MenuVO {
/** 子菜单 */
children?: MenuVO[];