release: update 5.4.0

This commit is contained in:
xiaoxian521
2024-04-22 14:15:05 +08:00
parent 270df1b17a
commit e25f4bcf39
44 changed files with 1013 additions and 903 deletions

1
types/global.d.ts vendored
View File

@@ -87,6 +87,7 @@ declare global {
FixedHeader?: boolean;
HiddenSideBar?: boolean;
MultiTagsCache?: boolean;
MaxTagsLevel?: number;
KeepAlive?: boolean;
Locale?: string;
Layout?: string;

4
types/router.d.ts vendored
View File

@@ -45,8 +45,10 @@ declare global {
/** 离场动画 */
leaveTransition?: string;
};
// 是否不添加信息到标签页(默认`false`
/** 当前菜单名称或自定义信息禁止添加到标签页(默认`false` */
hiddenTag?: boolean;
/** 当前菜单名称是否固定显示在标签页且不可关闭(默认`false` */
fixedTag?: boolean;
/** 动态路由可打开的最大数量 `可选` */
dynamicLevel?: number;
/** 将某个菜单激活

View File

@@ -8,5 +8,3 @@ declare module "*.scss" {
const scss: Record<string, string>;
export default scss;
}
declare module "element-plus/dist/locale/zh-cn.mjs";