mirror of
https://github.com/jekip/naive-ui-admin.git
synced 2026-02-17 03:32:27 +08:00
fix Bug or esLink formatting
This commit is contained in:
@@ -1,23 +1,23 @@
|
||||
import { ref, onMounted, onUnmounted } from 'vue'
|
||||
import { debounce } from 'lodash'
|
||||
import { ref, onMounted, onUnmounted } from 'vue';
|
||||
import { debounce } from 'lodash';
|
||||
|
||||
/**
|
||||
* description: 获取页面宽度
|
||||
*/
|
||||
|
||||
export function useDomWidth() {
|
||||
const domWidth = ref(window.innerWidth)
|
||||
const domWidth = ref(window.innerWidth);
|
||||
|
||||
function resize() {
|
||||
domWidth.value = document.body.clientWidth
|
||||
}
|
||||
function resize() {
|
||||
domWidth.value = document.body.clientWidth;
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
window.addEventListener('resize', debounce(resize, 80))
|
||||
})
|
||||
onUnmounted(() => {
|
||||
window.removeEventListener('resize', resize)
|
||||
})
|
||||
onMounted(() => {
|
||||
window.addEventListener('resize', debounce(resize, 80));
|
||||
});
|
||||
onUnmounted(() => {
|
||||
window.removeEventListener('resize', resize);
|
||||
});
|
||||
|
||||
return domWidth
|
||||
return domWidth;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user