# useRect ### 介绍 获取元素的大小及其相对于视口的位置,等价于 [Element.getBoundingClientRect](https://developer.mozilla.org/zh-CN/docs/Web/API/Element/getBoundingClientRect)。 ## 代码演示 ### 基本用法 ```html
``` ```js import { ref } from 'vue'; import { useRect } from '@vant/use'; export default { setup() { const root = ref(); const rect = useRect(); console.log(rect); // -> 元素的大小及其相对于视口的位置 return { root }; }, }; ``` ## API ### 类型定义 ```ts function useRect( element: Element | Window | Ref