vue3-vant4-mobile/src/hooks/useDomWidth.ts
xiangshu233 702747243a chore 依赖更新
fix 删除无用代码
2022-10-22 10:15:38 +08:00

24 lines
472 B
TypeScript

import { ref, onMounted, onUnmounted } from 'vue';
import { debounce } from 'lodash-es';
/**
* description: 获取页面宽度
*/
export function useDomWidth() {
const domWidth = ref(window.innerWidth);
function resize() {
domWidth.value = document.body.clientWidth;
}
onMounted(() => {
window.addEventListener('resize', debounce(resize, 80));
});
onUnmounted(() => {
window.removeEventListener('resize', resize);
});
return domWidth;
}