1
0
mirror of https://github.com/nuxt/nuxt.git synced 2025-03-04 22:24:49 +00:00
Nuxt/test/fixtures/basic/components/clientFallback/AsyncSetup.vue

12 lines
256 B
Vue

<template>
<div>
async setup
<NuxtClientFallback>
<BreakInAsyncSetup class="clientfallback-async-setup" />
<template #fallback>
<div>Work with async setup</div>
</template>
</NuxtClientFallback>
</div>
</template>