Bulk create components
This commit is contained in:
15
docs/guide/badge/badge.md
Normal file
15
docs/guide/badge/badge.md
Normal file
@@ -0,0 +1,15 @@
|
||||
<script setup>
|
||||
import BadgeExample from './examples/BadgeExample.vue'
|
||||
</script>
|
||||
# Badge
|
||||
|
||||
```vue
|
||||
<script setup>
|
||||
import { Badge } from 'flowbite-vue'
|
||||
</script>
|
||||
<template>
|
||||
<Badge></Badge>
|
||||
</template>
|
||||
```
|
||||
|
||||
<BadgeExample />
|
||||
8
docs/guide/badge/examples/BadgeExample.vue
Normal file
8
docs/guide/badge/examples/BadgeExample.vue
Normal file
@@ -0,0 +1,8 @@
|
||||
<template>
|
||||
<div class="vp-raw flex flex-col">
|
||||
<Badge></Badge>
|
||||
</div>
|
||||
</template>
|
||||
<script setup>
|
||||
import { Badge } from '../../../../src/index'
|
||||
</script>
|
||||
Reference in New Issue
Block a user