On this page
useMounted
Category | Component |
---|---|
Export Size | 156 B |
Last Changed | 4 weeks ago |
Mounted state in ref.
Usage
import { useMounted } from '@vueuse/core'
const isMounted = useMounted()
Which is essentially a shorthand of:
const isMounted = ref(false)
onMounted(() => {
isMounted.value = true
})
Type Declarations
/**
* Mounted state in ref.
*
* @see https://vueuse.org/useMounted
* @param options
*/
export declare function useMounted(): Ref<boolean>
Source
© 2019-present Anthony Fu
Licensed under the MIT License.
https://vueuse.org/core/useMounted/