1.0.1 • Published 4 years ago

vue-toast-csx v1.0.1

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

vue-toast-csx

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-csx'

//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 
})