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