16 lines
228 B
Markdown
16 lines
228 B
Markdown
<script setup>
|
|
import AvatarExample from './examples/AvatarExample.vue'
|
|
</script>
|
|
# Avatar
|
|
|
|
```vue
|
|
<script setup>
|
|
import { Avatar } from 'flowbite-vue'
|
|
</script>
|
|
<template>
|
|
<Avatar></Avatar>
|
|
</template>
|
|
```
|
|
|
|
<AvatarExample />
|