16 lines
246 B
Markdown
16 lines
246 B
Markdown
<script setup>
|
|
import ModalExample from './examples/ModalExample.vue'
|
|
</script>
|
|
# Vue Modal Component - Flowbite
|
|
|
|
```vue
|
|
<script setup>
|
|
import { Modal } from 'flowbite-vue'
|
|
</script>
|
|
<template>
|
|
<Modal></Modal>
|
|
</template>
|
|
```
|
|
|
|
<ModalExample />
|