tryOnScopeDispose
Safe onScopeDispose. Call onScopeDispose() if it's inside a effect scope lifecycle, if not, do nothing
Usage
import { tryOnScopeDispose } from '@vueuse/core'
tryOnScopeDispose(() => {
})
import { tryOnScopeDispose } from '@vueuse/core'
tryOnScopeDispose(() => {
})
Type Declarations
/**
* Call onScopeDispose() if it's inside a effect scope lifecycle, if not, do nothing
*
* @param fn
*/
export declare function tryOnScopeDispose(fn: Fn): boolean
/**
* Call onScopeDispose() if it's inside a effect scope lifecycle, if not, do nothing
*
* @param fn
*/
export declare function tryOnScopeDispose(fn: Fn): boolean
Source
Contributors
Changelog
v6.0.0-beta.2 on 8/9/2021ff21b - feat: use tryOnScopeDispose instead of tryOnUnmounted