Files
Snigdha-OS.github.io/components
Abhiraj Roy 170e34e7f6 🐛 fix(cards): rename
Signed-off-by: Abhiraj Roy <157954129+iconized@users.noreply.github.com>
2024-06-05 13:03:54 +05:30
..
2024-06-05 12:27:24 +05:30
2024-06-05 12:55:34 +05:30
2024-06-05 04:26:16 +05:30
2024-06-05 04:26:16 +05:30
2024-06-05 12:55:34 +05:30
2024-06-05 04:26:16 +05:30
2024-06-05 12:55:34 +05:30
2024-06-05 13:03:54 +05:30
2024-06-05 04:26:16 +05:30
2024-06-05 04:26:16 +05:30
2024-06-05 12:20:42 +05:30

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>