shadcn-vue/apps/www/src/lib/registry/default/example/AvatarDemo.vue
2023-09-06 09:55:22 +08:00

11 lines
285 B
Vue

<script setup lang="ts">
import { Avatar, AvatarFallback, AvatarImage } from '@/lib/registry/default/ui/avatar'
</script>
<template>
<Avatar>
<AvatarImage src="https://github.com/radix-vue.png" alt="@radix-vue" />
<AvatarFallback>CN</AvatarFallback>
</Avatar>
</template>