Skip to content
On this page

tryOnUnmounted

安全执行 onUnmounted。如果在组件生命周期内,则调用 onUnmounted(),如果不在,则什么都不做

Safe onUnmounted. Call onUnmounted() if it's inside a component lifecycle, if not, do nothing

Usage

js
import { tryOnUnmounted } from '@vueuse/core'

tryOnUnmounted(() => {

})
import { tryOnUnmounted } from '@vueuse/core'

tryOnUnmounted(() => {

})

Type Declarations

typescript
/**
 * Call onUnmounted() if it's inside a component lifecycle, if not, do nothing
 *
 * @param fn
 */
export declare function tryOnUnmounted(fn: Fn): void
/**
 * Call onUnmounted() if it's inside a component lifecycle, if not, do nothing
 *
 * @param fn
 */
export declare function tryOnUnmounted(fn: Fn): void

Source

Category
Export Size
169 B
Last Changed
last year

SourceDocs

贡献者(Contributors)

日志(Changelog)

No recent changes

Released under the MIT License.