fix: 修复构建类型错误导致失败问题

This commit is contained in:
XiaoDaiGua-Ray 2024-02-21 15:38:39 +08:00
parent 9a4e2e723d
commit 0c1842cbbd
3 changed files with 13 additions and 15 deletions

View File

@ -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 {

View File

@ -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)
}
/**

View File

@ -34,5 +34,5 @@ export function watchEffectWithTarget<T extends AnyFC>(
) {
const stop = watchEffect(fc, watchOptions)
effectDispose({ fc: stop })
effectDispose(stop)
}