mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
15 lines
377 B
Vue
15 lines
377 B
Vue
|
<template>
|
||
|
<NuxtExampleLayout example="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" />
|
||
|
<NuxtWithPrefix class="mt-6" />
|
||
|
</div>
|
||
|
</NuxtExampleLayout>
|
||
|
</template>
|