async fetchWeather (querySearch) {
let url = 'http://localhost:4444/city/'+String(querySearch);
const res = await axios.get(url, {
mode: cors
});
this.weather = res;
console.log(this.weather);
console.log(querySearch);
}