mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 09:33:54 +00:00
15 lines
390 B
Vue
15 lines
390 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" />
|
|
<NuxtWithPrefix class="mt-6" />
|
|
</div>
|
|
</NuxtExampleLayout>
|
|
</template>
|