vue-toast-smalldemo
v1.0.9
Published
a toast plugin for mobile
Downloads
16
Readme
#vue-toast-smalldemo
Introduction
a mobile toast plugin for vue
Usage
//first import plugin
import VueToast from 'vue-toast-smalldemo'
//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
})