Skip to content

tryOnBeforeMount

类别
导出体积
163 B
上次更改
3 weeks ago

安全的 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

源码

源码文档

贡献者

一纸忘忧
Anthony Fu
Anthony Fu
Doctorwu
qiang
Eureka

更新日志

v12.3.0 on 1/2/2025
59f75 - feat(toValue): deprecate toValue from @vueuse/shared in favor of Vue's native
v12.0.0-beta.1 on 11/21/2024
0a9ed - feat!: drop Vue 2 support, optimize bundles and clean up (#4349)
v10.7.1 on 12/27/2023
ce420 - fix: fix tryOnMounted in vue2 (#3658)
v10.7.0 on 12/5/2023
f2aeb - feat(tryOnMounted): support target arguement (#3185)