UNPKG

@meleon/uni-ui

Version:

A uniapp components library written in vue3 and typescript

9 lines (8 loc) 438 B
/** * @description 获取页面元素的尺寸信息 * @param context 使用 getCurrentInstance 获取到的 “this” * @param selector 目标元素的 CSS 选择器 * @returns 与 getBoundingClientRect 返回值相同 */ export declare function getRect(context: any, selector: string): Promise<Record<string, number>>; export declare function getAllRect(context: any, selector: string): Promise<Record<string, number>[]>;