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