Skip to content

tryOnBeforeUnmount

类别
导出体积
148 B
上次更改
9 months ago

安全的 onBeforeUnmount。如果在组件生命周期内,调用 onBeforeUnmount(),如果不是,不执行任何操作。

用法

ts
import { 
tryOnBeforeUnmount
} from '@vueuse/core'
tryOnBeforeUnmount
(() => {
})

类型声明

ts
/**
 * 如果在组件生命周期内,调用 onBeforeUnmount(),如果不是,不执行任何操作
 *
 * @param fn
 * @param target
 */
export declare function 
tryOnBeforeUnmount
(
fn
:
Fn
,
target
?: any): void

源码

源码文档

贡献者

一纸忘忧
Anthony Fu
Ngheizit
SerKo
Anthony Fu
Doctorwu
qiang

更新日志

59f75 - feat(toValue): deprecate toValue from @vueuse/shared in favor of Vue's native
0a9ed - feat!: drop Vue 2 support, optimize bundles and clean up (#4349)
ce420 - fix: fix tryOnMounted in vue2 (#3658)
f2aeb - feat(tryOnMounted): support target arguement (#3185)