16 lines
240 B
Markdown
16 lines
240 B
Markdown
<script setup>
|
|
import CardExample from './examples/CardExample.vue'
|
|
</script>
|
|
# Vue Card Components - Flowbite
|
|
|
|
```vue
|
|
<script setup>
|
|
import { Card } from 'flowbite-vue'
|
|
</script>
|
|
<template>
|
|
<Card></Card>
|
|
</template>
|
|
```
|
|
|
|
<CardExample />
|