vue2-easy-toast
v1.1.2
Published
a toast plugin for vue
Downloads
40
Readme
Overview
a toast plugin for vue
Installation
npm install vue2-easy-toast
import VueToast from 'vue2-easy-toast'
Vue.use(VueToast)
Usage
Basic Usage
this.$toast.show('hello,toast')
Or To configure more options
this.$toast.show({
message: 'hello,toast',
duration: 5000
})