├── .gitignore ├── LICENSE ├── README.md ├── package.json └── vue-notie.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredreich/vue-notie/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredreich/vue-notie/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredreich/vue-notie/HEAD/package.json -------------------------------------------------------------------------------- /vue-notie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredreich/vue-notie/HEAD/vue-notie.js --------------------------------------------------------------------------------