import { ref, Ref } from 'vue'; import { inBrowser } from '../utils'; let width: Ref; let height: Ref; 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 }; }