Skip to content

tryOnBeforeMount ​

Category
Export Size
114 B
Last Changed
3 months ago

Safe onBeforeMount. Call onBeforeMount() if it's inside a component lifecycle, if not, just call the function

Usage ​

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

tryOnBeforeMount(() => {

})

Type Declarations ​

typescript
/**
 * Call onBeforeMount() if it's inside a component lifecycle, if not, just call the function
 *
 * @param fn
 * @param sync if set to false, it will run in the nextTick() of Vue
 * @param target
 */
export declare function tryOnBeforeMount(
  fn: Fn,
  sync?: boolean,
  target?: any,
): void

Source ​

Source • Docs

Contributors ​

Doctorwu
qiang
Anthony Fu
Eureka

Changelog ​

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)

Released under the MIT License.