onMounted — after DOM render. onBeforeMount — before DOM render.
onMounted:
onBeforeMount:
1<script setup>2import { onMounted, onBeforeMount, ref } from "vue"34const el = ref(null)56onBeforeMount(() => {7 // el.value is null8})910onMounted(() => {11 // el.value is available12})13</script>1415<template>16 <div ref="el">Content</div>17</template>
Key: Use onMounted for DOM access.