Files
flowbite-vue/docs/components/toast/toast.md
2022-07-25 15:57:18 +03:00

24 lines
399 B
Markdown

<script setup>
import ToastExample from './examples/ToastExample.vue'
</script>
# Toast
```vue
<script setup>
import { Toast } from 'flowbite-vue'
</script>
<template>
<Toast type="warning">
Improve password difficulty.
</Toast>
<Toast type="success">
Item moved successfully.
</Toast>
<Toast type="danger">
Item has been deleted.
</Toast>
</template>
```
<ToastExample />