mirror of
https://github.com/nuxt/nuxt.git
synced 2025-03-22 01:05:55 +00:00
14 lines
254 B
Vue
14 lines
254 B
Vue
<script setup lang="ts">
|
|
if (import.meta.client) {
|
|
await new Promise<void>((resolve) => {
|
|
document.addEventListener('finishHydration', () => resolve())
|
|
})
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div data-testid="content">
|
|
app content
|
|
</div>
|
|
</template>
|