├── src ├── index.js ├── Notification.vue └── Notify.vue ├── .npmignore ├── .gitignore ├── dist ├── logo.png └── build.js ├── demo ├── assets │ └── logo.png ├── main.js └── App.vue ├── .babelrc ├── docs └── index.html ├── index.html ├── LICENSE.txt ├── package.json ├── webpack.config.js └── README.md /src/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./Notify.vue'); -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | .DS_Store 4 | dist 5 | .babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | npm-debug.log 4 | yarn-error.log 5 | .idea -------------------------------------------------------------------------------- /dist/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmySlowLoris/vue-notify-me/HEAD/dist/logo.png -------------------------------------------------------------------------------- /demo/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmySlowLoris/vue-notify-me/HEAD/demo/assets/logo.png -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | ["latest", { 4 | "es2015": { "modules": false } 5 | }] 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /demo/main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './App.vue' 3 | 4 | new Vue({ 5 | el: '#app', 6 | render: h => h(App) 7 | }) 8 | -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |
4 |
5 |
{{data.text}}
48 |{{data.text}}
70 |
24 | {{data.text}}
154 |