Skip to content

Jingce-lu/vue-toast

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vue-toast

A mobile toast plugin for vue2.

Usage

Install:

npm install vue-toast -S

Import:

import 'vue2-toast/lib/vue-toast.css';
import Toast from 'vue2-toast';
Vue.use(Toast);

Use in component:

<template>
    <div id="app">
        <button @click="openTop()">top</button>
        <button @click="openCenter()">center</button>
        <button @click="openBottom()">bottom</button>
    </div>
</template>
export default {
    methods:{
        openTop(){
            this.$toast.top('top');
        },
        openCenter(){
            this.$toast.center('center');
        },
        openBottom(){
            this.$toast('bottom');  // or this.$toast.bottom('bottom');
        }
    }
}

options

Vue.use(Toast, [options])
  • defaultType : position of Toast. | default: 'bottom' | possible 'top, center,bottom'
  • duration : default 2500ms

source code

download in Github.

demo

image

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published