Nuxt/test/fixtures/spa-loader/app.vue

14 lines
254 B
Vue
Raw Normal View History

<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>