fix(@vant/use): useRect should always return DOMRect (#8147)

This commit is contained in:
neverland 2021-02-13 20:57:06 +08:00 committed by GitHub
parent 7ec644c3bc
commit 0d0310d34e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,27 +12,12 @@ export const useRect = (
if (isWindow(element)) {
const width = element.innerWidth;
const height = element.innerHeight;
return {
top: 0,
left: 0,
right: width,
bottom: height,
width,
height,
};
return new DOMRect(0, 0, width, height);
}
if (element && element.getBoundingClientRect) {
return element.getBoundingClientRect();
}
return {
top: 0,
left: 0,
right: 0,
bottom: 0,
width: 0,
height: 0,
};
return new DOMRect(0, 0, 0, 0);
};