1.0.0 • Published 7 years ago

vue-toast-demo-aa v1.0.0

Weekly downloads
2
License
ISC
Repository
-
Last release
7 years ago

Vue 插件开发并发布到 npm

功能全面的移动端轮播图 Vue 插件(推荐收藏)

先写出静态 .html 效果

再转成 .Vue 组件

webpack 打包


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