tryOnBeforeMount
安全的 onBeforeMount
。如果在组件生命周期内,调用 onBeforeMount()
,如果不是,直接调用函数。
用法
js
import { tryOnBeforeMount } from '@vueuse/core'
tryOnBeforeMount(() => {
})
类型声明
typescript
/**
* 如果在组件生命周期内,调用 onBeforeMount(),如果不是,直接调用函数
*
* @param fn
* @param sync 如果设置为 false,则会在 Vue 的下一个 tick 中运行
* @param target
*/
export declare function tryOnBeforeMount(
fn: Fn,
sync?: boolean,
target?: any,
): void
Source
贡献者
丶远方
Doctorwu
qiang
Anthony Fu
Eureka