vue-toast-mb
v1.0.3
Published
a vue toast plugin for mobile
Downloads
13
Readme
vue-toast-mb
A mobile toast plugin for vue.
Introduction
A mobile toast plugin for vue.
Useage
It's simple.
//first import plugin
import VueToast from 'vue-toast-mb'
//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
})
or
this.$toast.show("hello,toast",{ duration:3000 },function(){
//to-do
})