mirror of
https://github.com/LukeHagar/unicorn-utterances.git
synced 2025-12-07 12:57:45 +00:00
17 lines
241 B
Vue
17 lines
241 B
Vue
<!-- App.vue -->
|
|
<script setup>
|
|
import { ref, onMounted } from "vue";
|
|
|
|
// Assign the ref
|
|
const el = ref();
|
|
|
|
// Use the ref
|
|
onMounted(() => {
|
|
console.log(el.value);
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<p ref="el">Check your console</p>
|
|
</template>
|