mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
23 lines
366 B
TypeScript
23 lines
366 B
TypeScript
|
|
export interface InstallOptions {
|
|
size: ComponentSize
|
|
zIndex: number
|
|
locale?: any
|
|
i18n?: (...args: any[]) => string
|
|
}
|
|
|
|
let $ELEMENT = { } as InstallOptions
|
|
|
|
const setConfig = (option: InstallOptions): void => {
|
|
$ELEMENT = option
|
|
}
|
|
|
|
const getConfig = (key: keyof InstallOptions): unknown => {
|
|
return $ELEMENT[key]
|
|
}
|
|
|
|
export {
|
|
getConfig,
|
|
setConfig,
|
|
}
|