mirror of
https://github.com/Snigdha-OS/Snigdha-OS.github.io.git
synced 2025-09-06 20:55:18 +02:00
components/
Directory
Most components are reusable pieces of the user interface, like buttons and menus. In Nuxt, you can create these components in the components/
directory, and they will be automatically available across your application without having to explicitly import them.
app.vue
<template>
<div>
<h1>Welcome to the homepage</h1>
<AppAlert>
This is an auto-imported component.
</AppAlert>
</div>
</template>
components/AppAlert.vue
<template>
<span>
<slot />
</span>
</template>