mirror of
https://github.com/nuxt/nuxt.git
synced 2024-12-04 11:27:13 +00:00
16 lines
231 B
Vue
16 lines
231 B
Vue
<template>
|
|
<div>
|
|
<LazyEventDelayedModel
|
|
v-model="model"
|
|
@hydrated="log"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const model = ref(0)
|
|
function log () {
|
|
console.log('Component hydrated')
|
|
}
|
|
</script>
|