mirror of
https://github.com/xiangshu233/vue3-vant4-mobile.git
synced 2025-04-05 19:42:05 +08:00
24 lines
472 B
TypeScript
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;
|
|
}
|