diff --git a/src/components/CurrentWeather.vue b/src/components/CurrentWeather.vue index e69de29..5422e22 100644 --- a/src/components/CurrentWeather.vue +++ b/src/components/CurrentWeather.vue @@ -0,0 +1,116 @@ + + + + + {{ this.currentWeather.name }} + {{ + Math.round(this.currentWeather.main.temp) + }} + + + + {{ Math.round(this.currentWeather.main.temp_max) }}° + + + + {{ Math.round(this.currentWeather.main.temp_min) }}° + + + {{ + this.currentWeather.weather[0].description + }} + Feels like + {{ Math.round(this.currentWeather.main.feels_like) }}° + + + + + + + + + + + +