Vant4 useRect
介绍
获取元素的大小及其相对于视口的位置,等价于 Element.getBoundingClientRect。
代码演示
基本用法
<div ref="root" />
import { ref, onMounted } from 'vue';
import { useRect } from '@vant/use';
export default {
setup() {
const root = ref();
onMounted(() => {
const rect = useRect(root);
console.log(rect); // -> 元素的大小及其相对于视口的位置
});
return { root };
},
};
API
类型定义
function useRect(
element: Element | Window | Ref<Element | Window | undefined>
): DOMRect;
返回值
参数 | 说明 | 类型 |
---|---|---|
width | 宽度 | number |
height | 高度 | number |
top | 顶部与视图窗口左上角的距离 | number |
left | 左侧与视图窗口左上角的距离 | number |
right | 右侧与视图窗口左上角的距离 | number |
bottom | 底部与视图窗口左上角的距离 | number |