596 B
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>