1.0.2 • Published 6 years ago

vue-toast-demo-hut v1.0.2

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

vue-toast-demo-hut

a mobile toast plugin for vue

Usage

//导入
import ToastDemo from 'vue-toast-demo-hut'

Vue.use(ToastDemo);

//弹出 "hello toast" 的提示
this.$toast.show("hello toast",{});

//延迟3秒后弹出 "hello toast" 的提示
this.$toast.show("hello toast",{
  duration:3000
});

//回调函数
this.$toast.show("hello toast",{
  duration:3000
},function(){
  //...
});

注意

//option必须存在且为对象
this.$toast.show(message,option,callback)