mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-06-02 03:39:15 +08:00
26 lines
561 B
TypeScript
26 lines
561 B
TypeScript
import { ref, Ref } from 'vue';
|
|
import { inBrowser } from '../utils';
|
|
|
|
let width: Ref<number>;
|
|
let height: Ref<number>;
|
|
|
|
export function useWindowSize() {
|
|
if (!width) {
|
|
width = ref(0);
|
|
height = ref(0);
|
|
|
|
if (inBrowser) {
|
|
const update = () => {
|
|
width.value = window.innerWidth;
|
|
height.value = window.innerHeight;
|
|
};
|
|
|
|
update();
|
|
window.addEventListener('resize', update, { passive: true });
|
|
window.addEventListener('orientationchange', update, { passive: true });
|
|
}
|
|
}
|
|
|
|
return { width, height };
|
|
}
|