mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
b38dc097f6
Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
19 lines
505 B
Vue
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>
|