@omiu/toast

Pop up prompt box.

Usage no npm install needed!

<script type="module">
  import omiuToast from 'https://cdn.skypack.dev/@omiu/toast';
</script>

README

Toast

Pop up prompt box.

Import

import '@omiu/toast'

Or use script tag to ref it.

<script src="https://unpkg.com/@omiu/toast"></script>

Usage

<o-toast></o-toast>

API

Props

{
  label?: string
  loading?: boolean
  done?: boolean
  duration: number
  autoClose: boolean
  show: boolean
}

默认属性

{
  duration: 2000,
  autoClose: false,
  show: true
)