|  Jonathan
				
				06df801c39
				fix: styles loaded via webpack instead of example | 6 жил өмнө | |
|---|---|---|
| dist | 6 жил өмнө | |
| example | 6 жил өмнө | |
| src | 6 жил өмнө | |
| .babelrc | 6 жил өмнө | |
| .gitignore | 6 жил өмнө | |
| .npmignore | 6 жил өмнө | |
| LICENCE.md | 6 жил өмнө | |
| README.md | 6 жил өмнө | |
| package-lock.json | 6 жил өмнө | |
| package.json | 6 жил өмнө | |
| webpack.config.js | 6 жил өмнө | 
Toast alerts (initially developed for Vue.js with a material-design style)
npm install -S  --production toasters
<template>
    <toast></toast>
</template>
<script>
    import { Toast } from 'toasters';
    export default {
        ready() {
            new Toast({
                content: "This is a test for content",
                persistant: true,
                position: {
                    horizontal: "right",
                    vertical: "bottom"
                }
            });
        }
    }
</script>
# install dependencies
npm install
# watch files for changes wtih webpack
npm run dev
# build for production with minification
npm run build