mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
17 lines
249 B
Vue
17 lines
249 B
Vue
<template>
|
|
<div>
|
|
async-parent
|
|
<NuxtPage />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
await Promise.resolve()
|
|
if (import.meta.client) {
|
|
console.log('isHydrating: ' + useNuxtApp().isHydrating)
|
|
}
|
|
definePageMeta({
|
|
layout: 'custom'
|
|
})
|
|
</script>
|