style ESline规则更新

This commit is contained in:
xxm
2022-10-03 19:26:05 +08:00
parent 488776ca27
commit be13e7b425
732 changed files with 15318 additions and 17298 deletions

44
types/vue-router.d.ts vendored
View File

@@ -1,45 +1,45 @@
export {};
export {}
declare module 'vue-router' {
interface RouteMeta extends Record<string | number | symbol, unknown> {
orderNo?: number;
orderNo?: number
// title
title: string;
title: string
// dynamic router level.
dynamicLevel?: number;
dynamicLevel?: number
// dynamic router real route path (For performance).
realPath?: string;
realPath?: string
// Whether to ignore permissions
ignoreAuth?: boolean;
ignoreAuth?: boolean
// role info
roles?: RoleEnum[];
roles?: RoleEnum[]
// Whether not to cache
ignoreKeepAlive?: boolean;
ignoreKeepAlive?: boolean
// Is it fixed on tab
affix?: boolean;
affix?: boolean
// icon on tab
icon?: string;
frameSrc?: string;
icon?: string
frameSrc?: string
// current page transition
transitionName?: string;
transitionName?: string
// Whether the route has been dynamically added
hideBreadcrumb?: boolean;
hideBreadcrumb?: boolean
// Hide submenu
hideChildrenInMenu?: boolean;
hideChildrenInMenu?: boolean
// Carrying parameters
carryParam?: boolean;
carryParam?: boolean
// Used internally to mark single-level menus
single?: boolean;
single?: boolean
// Currently active menu
currentActiveMenu?: string;
currentActiveMenu?: string
// Never show in tab
hideTab?: boolean;
hideTab?: boolean
// Never show in menu
hideMenu?: boolean;
isLink?: boolean;
hideMenu?: boolean
isLink?: boolean
// only build for Menu
ignoreRoute?: boolean;
ignoreRoute?: boolean
// Hide path for children
hidePathForChildren?: boolean;
hidePathForChildren?: boolean
}
}