UNPKG

element-plus

Version:

A Component Library for Vue3.0

23 lines (17 loc) 366 B
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, }