From 0c1842cbbda2fefb30310b08717fdf85d43a4b99 Mon Sep 17 00:00:00 2001 From: XiaoDaiGua-Ray <443547225@qq.com> Date: Wed, 21 Feb 2024 15:38:39 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E6=9E=84=E5=BB=BA?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B=E9=94=99=E8=AF=AF=E5=AF=BC=E8=87=B4=E5=A4=B1?= =?UTF-8?q?=E8=B4=A5=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/hooks/web/useElementFullscreen.ts | 16 +++++++--------- src/utils/element.ts | 10 +++++----- src/utils/vue/watchEffectWithTarget.ts | 2 +- 3 files changed, 13 insertions(+), 15 deletions(-) diff --git a/src/hooks/web/useElementFullscreen.ts b/src/hooks/web/useElementFullscreen.ts index 3981dca4..395bade5 100644 --- a/src/hooks/web/useElementFullscreen.ts +++ b/src/hooks/web/useElementFullscreen.ts @@ -182,18 +182,16 @@ export const useElementFullscreen = ( const stopWatch = watch(() => height.value, updateStyle) - effectDispose({ - fc: () => { - const element = unrefElement(target) as HTMLElement | null + effectDispose(() => { + const element = unrefElement(target) as HTMLElement | null - if (element) { - element.style.transition = cacheStyle.transition ?? '' + if (element) { + element.style.transition = cacheStyle.transition ?? '' - element.removeAttribute(ID_TAG) - } + element.removeAttribute(ID_TAG) + } - stopWatch() - }, + stopWatch() }) return { diff --git a/src/utils/element.ts b/src/utils/element.ts index 0d5cc802..8a09e584 100644 --- a/src/utils/element.ts +++ b/src/utils/element.ts @@ -45,7 +45,7 @@ export const setClass = ( immediate: true, }) - effectDispose({ fc: watcher }) + effectDispose(watcher) } /** @@ -93,7 +93,7 @@ export const removeClass = ( immediate: true, }) - effectDispose({ fc: watcher }) + effectDispose(watcher) } /** @@ -140,7 +140,7 @@ export const hasClass = ( immediate: true, }) - effectDispose({ fc: watcher }) + effectDispose(watcher) return hasClassRef } @@ -250,7 +250,7 @@ export const setStyle = ( immediate: true, }) - effectDispose({ fc: watcher }) + effectDispose(watcher) } /** @@ -286,7 +286,7 @@ export const removeStyle = ( immediate: true, }) - effectDispose({ fc: watcher }) + effectDispose(watcher) } /** diff --git a/src/utils/vue/watchEffectWithTarget.ts b/src/utils/vue/watchEffectWithTarget.ts index f5b5c133..6427d389 100644 --- a/src/utils/vue/watchEffectWithTarget.ts +++ b/src/utils/vue/watchEffectWithTarget.ts @@ -34,5 +34,5 @@ export function watchEffectWithTarget( ) { const stop = watchEffect(fc, watchOptions) - effectDispose({ fc: stop }) + effectDispose(stop) }