2022-10-08 14:18:57 +00:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
Custom Async Layout:
|
|
|
|
<slot />
|
2023-06-23 10:02:01 +00:00
|
|
|
<ComponentWithRef />
|
2022-10-08 14:18:57 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
await Promise.resolve()
|
|
|
|
console.log('isHydrating: ' + useNuxtApp().isHydrating)
|
|
|
|
</script>
|