perf: replace `onUnMounted` to `tryOnScopeDispose` (#7747)

* perf: replace `onUnMounted` to `tryOnScopeDispose`

* perf: replace `onUnMounted` to `tryOnScopeDispose`
pull/340/MERGE
橙子 2026-04-01 10:30:54 +08:00 committed by GitHub
parent 44a5809a46
commit 4e0968d4b7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -2,11 +2,11 @@ import type { Arrayable, MaybeElementRef } from '@vueuse/core';
import type { Ref } from 'vue';
import { computed, effectScope, onUnmounted, ref, unref, watch } from 'vue';
import { computed, effectScope, ref, unref, watch } from 'vue';
import { isFunction } from '@vben/utils';
import { useElementHover } from '@vueuse/core';
import { tryOnScopeDispose, useElementHover } from '@vueuse/core';
interface HoverDelayOptions {
/** 鼠标进入延迟时间 */
@ -151,7 +151,7 @@ export function useHoverToggle(
},
};
onUnmounted(() => {
tryOnScopeDispose(() => {
clearTimers();
// 停止监听器
stopWatcher();