Skip to content

tryOnMounted ​

Category
Export Size
109 B
Last Changed
last month

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

Usage ​

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

tryOnMounted(() => {

})

Type Declarations ​

typescript
/**
 * Call onMounted() 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 tryOnMounted(fn: Fn, sync?: boolean, target?: any): void

Source ​

Source • Docs

Contributors ​

Anthony Fu
Doctorwu
qiang
Connor Dooley
Nicholai Nissen

Changelog ​

v10.8.0 on 2/20/2024
2f66e - fix(useMounted): hold the instance, close #3785, close #3795
v10.7.1 on 12/27/2023
ce420 - fix: fix tryOnMounted in vue2 (#3658)
v10.7.0 on 12/5/2023
f2aeb - feat: support target arguement (#3185)

Released under the MIT License.