UNPKG

naive-ui

Version:

A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast

9 lines 276 B
export function getScrollTop(target) { return target instanceof HTMLElement ? target.scrollTop : window.scrollY; } export function getRect(target) { return target instanceof HTMLElement ? target.getBoundingClientRect() : { top: 0, bottom: window.innerHeight }; }