1.0.0 • Published 6 years ago

vue-toast-l v1.0.0

Weekly downloads
1
License
MIT
Repository
-
Last release
6 years ago

vue-toast

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

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