<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');

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

  1. https://unpkg.com/vue@3