16 lines
221 B
Markdown
16 lines
221 B
Markdown
<script setup>
|
|
import BadgeExample from './examples/BadgeExample.vue'
|
|
</script>
|
|
# Badge
|
|
|
|
```vue
|
|
<script setup>
|
|
import { Badge } from 'flowbite-vue'
|
|
</script>
|
|
<template>
|
|
<Badge></Badge>
|
|
</template>
|
|
```
|
|
|
|
<BadgeExample />
|