Nuxt/test/fixtures/basic/layouts/custom-async.vue
Anthony Fu adb1c122a7
fix(nuxt): fix error on layout switching (#21450)
Co-authored-by: Daniel Roe <daniel@roe.dev>
2023-06-23 11:02:01 +01:00

13 lines
209 B
Vue

<template>
<div>
Custom Async Layout:
<slot />
<ComponentWithRef />
</div>
</template>
<script setup>
await Promise.resolve()
console.log('isHydrating: ' + useNuxtApp().isHydrating)
</script>