Nuxt/examples/auto-imports/components/app.vue
Daniel Roe b38dc097f6
feat(nuxt3): allow separating client and server components (#4390)
Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
2022-04-19 21:13:55 +02:00

19 lines
505 B
Vue

<template>
<NuxtExampleLayout example="auto-imports/components">
<h1 class="text-xl opacity-50">
Auto Imported Components
</h1>
<div>
<!-- Auto Imported Components -->
<HelloWorld class="text-2xl" />
<Nuxt3 class="text-2xl" />
<ParentFolderHello class="mt-6" />
<ClientAndServer style="color: red">
<div>[Slot]</div>
</ClientAndServer>
<JustClient />
<NuxtWithPrefix class="mt-6" />
</div>
</NuxtExampleLayout>
</template>