mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-05 19:42:07 +08:00
fix: 修复构建类型错误导致失败问题
This commit is contained in:
parent
9a4e2e723d
commit
0c1842cbbd
@ -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 {
|
||||
|
@ -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)
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -34,5 +34,5 @@ export function watchEffectWithTarget<T extends AnyFC>(
|
||||
) {
|
||||
const stop = watchEffect(fc, watchOptions)
|
||||
|
||||
effectDispose({ fc: stop })
|
||||
effectDispose(stop)
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user