UNPKG

vue-draggable-resizable-next

Version:

[Vue3 Component] Draggable and resizable component for vue3

8 lines (7 loc) 222 B
export function getElSize(el: Element) { const style = window.getComputedStyle(el) return { width: parseFloat(style.getPropertyValue('width')), height: parseFloat(style.getPropertyValue('height')) } }