element-plus/packages/test-utils/dom.ts

5 lines
131 B
TypeScript

export const getCssVariable = (el: HTMLElement, property: string) => {
return getComputedStyle(el).getPropertyValue(property)
}