mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 17:31:02 +08:00
270f4bc97a
fix #2482
5 lines
131 B
TypeScript
5 lines
131 B
TypeScript
export const getCssVariable = (el: HTMLElement, property: string) => {
|
|
return getComputedStyle(el).getPropertyValue(property)
|
|
}
|
|
|