fix: name warn

This commit is contained in:
xingyu 2023-10-31 14:04:43 +08:00
parent 7321ff2136
commit ce93c8d4e9

View File

@ -32,7 +32,7 @@ onMounted(() => {
scrollContainer.value = getScrollContainer(refSticky.value!, true) scrollContainer.value = getScrollContainer(refSticky.value!, true)
useEventListener(scrollContainer, 'scroll', handleScroll) useEventListener(scrollContainer, 'scroll', handleScroll)
useEventListener('resize', handleReize) useEventListener('resize', handleResize)
handleScroll() handleScroll()
}) })
onActivated(() => { onActivated(() => {
@ -103,7 +103,7 @@ const handleScroll = () => {
reset() reset()
} }
} }
const handleReize = () => { const handleResize = () => {
if (isSticky.value && refSticky.value) { if (isSticky.value && refSticky.value) {
width.value = refSticky.value.getBoundingClientRect().width + 'px' width.value = refSticky.value.getBoundingClientRect().width + 'px'
} }