<div id="app">
<div ref="box1"></div>
</div>
const { createApp, onMounted, ref } = Vue;
const app = createApp({
setup() {
const box1 = ref(null);
onMounted(() => {
console.log('DOM Box1:', box1.value);
})
return {
box1,
}
}
});
app.mount('#app');
This Pen doesn't use any external CSS resources.