mirror of
https://github.com/nuxt/nuxt.git
synced 2025-03-24 18:16:36 +00:00
11 lines
195 B
Vue
11 lines
195 B
Vue
<template>
|
|
<div>
|
|
This {{ mounted ? 'is' : 'is not' }} mounted.
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const mounted = ref(false)
|
|
onMounted(() => { mounted.value = true })
|
|
</script>
|