Appearance
Mounted state in ref.
import { useMounted } from './' const isMounted = useMounted()
Which is essentially a shorthand of:
const isMounted = ref(false) onMounted(() => { isMounted.value = true })