1.0.3 • Published 4 years ago

vue-toast-lp v1.0.3

Weekly downloads
4
License
ISC
Repository
github
Last release
4 years ago

vue-toast-lp

a toast plugins for vue.

Useage

// first import plugin
import VueToast from 'vue-toast-demo'

// and register the plugin on vue
Vue.use(VueToast)

//last ,you can call it.
this.$toast.show("Hello,Toast")

//or
this.$toast.show("Hello,Toast",{
  duration:3000
})

//or
this.$toast.show("Hello,Toast",function(){
  // to-do
})

```# vue-toast-lp