element-plus/packages/utils/config.ts

23 lines
366 B
TypeScript
Raw Normal View History

2020-07-28 17:48:40 +08:00
export interface InstallOptions {
size: ComponentSize
zIndex: number
locale?: any
i18n?: (...args: any[]) => string
}
let $ELEMENT = { } as InstallOptions
2020-07-28 17:48:40 +08:00
const setConfig = (option: InstallOptions): void => {
$ELEMENT = option
2020-07-28 17:48:40 +08:00
}
const getConfig = (key: keyof InstallOptions): unknown => {
2020-07-28 17:48:40 +08:00
return $ELEMENT[key]
}
export {
getConfig,
setConfig,
}