Tidak Ada Deskripsi

Jonathan 37d9c300b9 refactored structure & webpack 5 tahun lalu
dist 37d9c300b9 refactored structure & webpack 5 tahun lalu
example 37d9c300b9 refactored structure & webpack 5 tahun lalu
src 37d9c300b9 refactored structure & webpack 5 tahun lalu
.babelrc 37d9c300b9 refactored structure & webpack 5 tahun lalu
.gitignore a95567ff4e chore: node_modules should be ignored 5 tahun lalu
.npmignore 1bfbbd17aa initial 1.1.2 release: from archived repo 5 tahun lalu
LICENCE.md 1bfbbd17aa initial 1.1.2 release: from archived repo 5 tahun lalu
README.md 02c4100e89 1.1.3: updated name to 5 tahun lalu
package-lock.json 37d9c300b9 refactored structure & webpack 5 tahun lalu
package.json 37d9c300b9 refactored structure & webpack 5 tahun lalu
webpack.config.js 37d9c300b9 refactored structure & webpack 5 tahun lalu

README.md

toasters

Toast alerts (initially developed for Vue.js with a material-design style)

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>

Contributing

# install dependencies
npm install

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

# build for production with minification
npm run build