├── .babelrc ├── .editorconfig ├── .gitignore ├── README.md ├── config ├── dev.env.js ├── index.js └── prod.env.js ├── index.html ├── package.json ├── src ├── App.vue ├── components │ ├── Defs.vue │ ├── Dialog.vue │ ├── Droparea.vue │ ├── Rainbowarea.vue │ ├── Tornadoarea.vue │ └── Windarea.vue ├── main.js └── store │ └── store.js └── static ├── .gitkeep ├── CustomEase.min.js ├── DrawSVGPlugin.min.js ├── rain.mp3 ├── rainbow.mp3 ├── tornado.mp3 └── wind.mp3 /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-weather-notifier/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-weather-notifier/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-weather-notifier/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-weather-notifier/HEAD/README.md -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-weather-notifier/HEAD/config/dev.env.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-weather-notifier/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-weather-notifier/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-weather-notifier/HEAD/package.json -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-weather-notifier/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/components/Defs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-weather-notifier/HEAD/src/components/Defs.vue -------------------------------------------------------------------------------- /src/components/Dialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-weather-notifier/HEAD/src/components/Dialog.vue -------------------------------------------------------------------------------- /src/components/Droparea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-weather-notifier/HEAD/src/components/Droparea.vue -------------------------------------------------------------------------------- /src/components/Rainbowarea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-weather-notifier/HEAD/src/components/Rainbowarea.vue -------------------------------------------------------------------------------- /src/components/Tornadoarea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-weather-notifier/HEAD/src/components/Tornadoarea.vue -------------------------------------------------------------------------------- /src/components/Windarea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-weather-notifier/HEAD/src/components/Windarea.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-weather-notifier/HEAD/src/main.js -------------------------------------------------------------------------------- /src/store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-weather-notifier/HEAD/src/store/store.js -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/CustomEase.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-weather-notifier/HEAD/static/CustomEase.min.js -------------------------------------------------------------------------------- /static/DrawSVGPlugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-weather-notifier/HEAD/static/DrawSVGPlugin.min.js -------------------------------------------------------------------------------- /static/rain.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-weather-notifier/HEAD/static/rain.mp3 -------------------------------------------------------------------------------- /static/rainbow.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-weather-notifier/HEAD/static/rainbow.mp3 -------------------------------------------------------------------------------- /static/tornado.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-weather-notifier/HEAD/static/tornado.mp3 -------------------------------------------------------------------------------- /static/wind.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-weather-notifier/HEAD/static/wind.mp3 --------------------------------------------------------------------------------