处理打包报错

This commit is contained in:
2024-05-09 19:31:24 +08:00
parent 57b8f94d3e
commit 6010e8be67
50 changed files with 2679 additions and 64 deletions

3
src/types/elementPlus.d.ts vendored Normal file
View File

@@ -0,0 +1,3 @@
export type ElementPlusSize = 'default' | 'small' | 'large'
export type ElementPlusInfoType = 'success' | 'info' | 'warning' | 'danger'

5
src/types/icon.d.ts vendored Normal file
View File

@@ -0,0 +1,5 @@
export interface IconTypes {
size?: number
color?: string
icon: string
}

1
src/types/layout.d.ts vendored Normal file
View File

@@ -0,0 +1 @@
export type LayoutType = 'classic' | 'topLeft' | 'top' | 'cutMenu'

16
src/types/theme.d.ts vendored Normal file
View File

@@ -0,0 +1,16 @@
export type ThemeTypes = {
elColorPrimary?: string
leftMenuBorderColor?: string
leftMenuBgColor?: string
leftMenuBgLightColor?: string
leftMenuBgActiveColor?: string
leftMenuCollapseBgActiveColor?: string
leftMenuTextColor?: string
leftMenuTextActiveColor?: string
logoTitleTextColor?: string
logoBorderColor?: string
topHeaderBgColor?: string
topHeaderTextColor?: string
topHeaderHoverColor?: string
topToolBorderColor?: string
}