Nuxt/test/fixtures/basic/pages/async-parent/child.vue

14 lines
216 B
Vue

<template>
<div>
another-parent/child
</div>
</template>
<script setup>
await Promise.resolve()
console.log('isHydrating: ' + useNuxtApp().isHydrating)
definePageMeta({
layout: 'custom-async'
})
</script>