Açıklama Yok

Jonathan 1bfbbd17aa initial 1.1.2 release: from archived repo 5 yıl önce
dist 1bfbbd17aa initial 1.1.2 release: from archived repo 5 yıl önce
example 1bfbbd17aa initial 1.1.2 release: from archived repo 5 yıl önce
lib 1bfbbd17aa initial 1.1.2 release: from archived repo 5 yıl önce
src 1bfbbd17aa initial 1.1.2 release: from archived repo 5 yıl önce
.babelrc 1bfbbd17aa initial 1.1.2 release: from archived repo 5 yıl önce
.npmignore 1bfbbd17aa initial 1.1.2 release: from archived repo 5 yıl önce
LICENCE.md 1bfbbd17aa initial 1.1.2 release: from archived repo 5 yıl önce
README.md 1bfbbd17aa initial 1.1.2 release: from archived repo 5 yıl önce
package.json 1bfbbd17aa initial 1.1.2 release: from archived repo 5 yıl önce
webpack.config.js 1bfbbd17aa initial 1.1.2 release: from archived repo 5 yıl önce

README.md

vue-roaster

Material Design style Toast (Alert) for Vue

Installation

npm install -S --production vue-roaster

Usage

<template>
    <toast></toast>
</template>

<script>
    import { Toast } from 'vue-roaster';

    export default {
        ready() {
            Toast.methods.addToast("An Example Toast", 5000);
        },
        components: { Toast }
    }
</script>

See example folder for more details.

Contributing

# install dependencies
npm install

# serve example with hot reload at localhost:8080
npm run dev

# build for production with minification
npm run build