Merge branch 'master' of https://gitee.com/layui/layui-vue
This commit is contained in:
commit
9d72d62734
@ -174,7 +174,7 @@ const getScrollParent = (
|
||||
}
|
||||
}
|
||||
// @ts-ignore
|
||||
return document.documentElement || document.body || window;
|
||||
return window;
|
||||
};
|
||||
|
||||
// 节流
|
||||
@ -189,17 +189,17 @@ const throttle = (func: Function, wait: number) => {
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
const callback = throttle(handleScroll, 300);
|
||||
onMounted(() => {
|
||||
if (!props.target) return;
|
||||
scrollTarget.value = getScrollTarget();
|
||||
scrollTarget.value.addEventListener("scroll", throttle(handleScroll, 300));
|
||||
scrollTarget.value.addEventListener("scroll", callback);
|
||||
});
|
||||
|
||||
onBeforeUnmount(() => {
|
||||
scrollTarget.value?.removeEventListener(
|
||||
"scroll",
|
||||
throttle(handleScroll, 300)
|
||||
callback
|
||||
);
|
||||
});
|
||||
</script>
|
||||
|
Loading…
Reference in New Issue
Block a user