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

399 B

<script setup> import ToastExample from './examples/ToastExample.vue' </script>

Toast

<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>