├── .editorconfig ├── .gitignore ├── LICENSE ├── LICENSE.md ├── README.md ├── assets ├── css │ └── main.css └── img │ └── 1.jpg ├── components ├── theAside │ ├── Aside.vue │ └── wrapper │ │ ├── _currentLocation.vue │ │ ├── _head.vue │ │ └── _moreLocation.vue └── theMain │ ├── Main.vue │ └── wrapper │ ├── _airQuality.vue │ ├── _days.vue │ ├── _head.vue │ ├── _rainfall.vue │ └── _sunTime.vue ├── jsconfig.json ├── nuxt.config.js ├── package.json ├── pages └── index.vue ├── plugins ├── components.js └── date-filter.js ├── static └── favicon.ico ├── store ├── README.md └── index.js └── tailwind.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirz-dev/weather-nuxt/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirz-dev/weather-nuxt/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirz-dev/weather-nuxt/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirz-dev/weather-nuxt/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirz-dev/weather-nuxt/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirz-dev/weather-nuxt/HEAD/assets/css/main.css -------------------------------------------------------------------------------- /assets/img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirz-dev/weather-nuxt/HEAD/assets/img/1.jpg -------------------------------------------------------------------------------- /components/theAside/Aside.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirz-dev/weather-nuxt/HEAD/components/theAside/Aside.vue -------------------------------------------------------------------------------- /components/theAside/wrapper/_currentLocation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirz-dev/weather-nuxt/HEAD/components/theAside/wrapper/_currentLocation.vue -------------------------------------------------------------------------------- /components/theAside/wrapper/_head.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirz-dev/weather-nuxt/HEAD/components/theAside/wrapper/_head.vue -------------------------------------------------------------------------------- /components/theAside/wrapper/_moreLocation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirz-dev/weather-nuxt/HEAD/components/theAside/wrapper/_moreLocation.vue -------------------------------------------------------------------------------- /components/theMain/Main.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirz-dev/weather-nuxt/HEAD/components/theMain/Main.vue -------------------------------------------------------------------------------- /components/theMain/wrapper/_airQuality.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirz-dev/weather-nuxt/HEAD/components/theMain/wrapper/_airQuality.vue -------------------------------------------------------------------------------- /components/theMain/wrapper/_days.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirz-dev/weather-nuxt/HEAD/components/theMain/wrapper/_days.vue -------------------------------------------------------------------------------- /components/theMain/wrapper/_head.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirz-dev/weather-nuxt/HEAD/components/theMain/wrapper/_head.vue -------------------------------------------------------------------------------- /components/theMain/wrapper/_rainfall.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirz-dev/weather-nuxt/HEAD/components/theMain/wrapper/_rainfall.vue -------------------------------------------------------------------------------- /components/theMain/wrapper/_sunTime.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirz-dev/weather-nuxt/HEAD/components/theMain/wrapper/_sunTime.vue -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirz-dev/weather-nuxt/HEAD/jsconfig.json -------------------------------------------------------------------------------- /nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirz-dev/weather-nuxt/HEAD/nuxt.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirz-dev/weather-nuxt/HEAD/package.json -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirz-dev/weather-nuxt/HEAD/pages/index.vue -------------------------------------------------------------------------------- /plugins/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirz-dev/weather-nuxt/HEAD/plugins/components.js -------------------------------------------------------------------------------- /plugins/date-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirz-dev/weather-nuxt/HEAD/plugins/date-filter.js -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirz-dev/weather-nuxt/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirz-dev/weather-nuxt/HEAD/store/README.md -------------------------------------------------------------------------------- /store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirz-dev/weather-nuxt/HEAD/store/index.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirz-dev/weather-nuxt/HEAD/tailwind.config.js --------------------------------------------------------------------------------