!104 fix backTop 返回顶部 无法生效

Merge pull request !104 from pplokijuhyg/N/A
This commit is contained in:
就眠儀式 2022-11-11 09:16:39 +00:00 committed by Gitee
commit 38e5c90630
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -174,7 +174,7 @@ const getScrollParent = (
} }
} }
// @ts-ignore // @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(() => { onMounted(() => {
if (!props.target) return; if (!props.target) return;
scrollTarget.value = getScrollTarget(); scrollTarget.value = getScrollTarget();
scrollTarget.value.addEventListener("scroll", throttle(handleScroll, 300)); scrollTarget.value.addEventListener("scroll", callback);
}); });
onBeforeUnmount(() => { onBeforeUnmount(() => {
scrollTarget.value?.removeEventListener( scrollTarget.value?.removeEventListener(
"scroll", "scroll",
throttle(handleScroll, 300) callback
); );
}); });
</script> </script>