fix: 🐛 修复菜单类型打包类型警告问题
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "vue3-element-admin",
|
"name": "vue3-element-admin",
|
||||||
"description": "Vue3 + Vite + TypeScript + Element-Plus 的后台管理模板,vue-element-admin 的 Vue3 版本",
|
"description": "Vue3 + Vite + TypeScript + Element-Plus 的后台管理模板,vue-element-admin 的 Vue3 版本",
|
||||||
"version": "3.3.0",
|
"version": "3.3.1",
|
||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ export interface MenuQuery {
|
|||||||
/** 搜索关键字 */
|
/** 搜索关键字 */
|
||||||
keywords?: string;
|
keywords?: string;
|
||||||
}
|
}
|
||||||
export type MenuTypeEnum = 0 | 1 | 2;
|
import type { MenuTypeEnum } from "@/enums/system/menu.enum";
|
||||||
export interface MenuVO {
|
export interface MenuVO {
|
||||||
/** 子菜单 */
|
/** 子菜单 */
|
||||||
children?: MenuVO[];
|
children?: MenuVO[];
|
||||||
|
|||||||
Reference in New Issue
Block a user