Appearance
Share - Core
Mounted state in ref.
import { useMounted } from '@hungpvq/shared-core'; const isMounted = useMounted();
Which is essentially a shorthand of:
const isMounted = ref(false); onMounted(() => { isMounted.value = true; });