vue-tips
v1.3.0
Published
一个专注于 Vue 的提示插件,高度可定制。
Downloads
5
Readme
vue-tips
一个专注于 Vue 的提示插件,高度可定制。
Installation
$ npm install vue-tips
Usage
import vueTips from 'vue-tips'
Vue.use(vueTips)
this.$tips.show("默认3秒关闭")
this.$tips.show("自定义5秒关闭", {
delay: 5000
})
this.$tips.show("回调函数", () => {
alert('这里是回调函数')
})