shadcn-vue/apps/www/src/content/docs/components/avatar.md
2024-11-22 17:58:53 +08:00

596 B

title description source primitive
Avatar An image element with a fallback for representing the user. apps/www/registry/default/ui/avatar https://www.reka-ui.com/docs/components/avatar.html

Installation

npx shadcn-vue@latest add avatar

Usage

<script setup lang="ts">
import { Avatar, AvatarFallback, AvatarImage } from '@/components/ui/avatar'
</script>

<template>
  <Avatar>
    <AvatarImage src="https://github.com/unovue.png" alt="@unovue" />
    <AvatarFallback>CN</AvatarFallback>
  </Avatar>
</template>