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

4 lines
130 B
TypeScript
Raw Normal View History

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