1.0.3 • Published 4 years ago

vue-toast-apple v1.0.3

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

vue-toast-apple

a mobile toast plugin for vue

Usage

import ToastDemo from 'vue-toast-apple'

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(){ //... });