CSS
4
Вклад в тег
<div v-for="cat in categories" :key="cat.id">
<app-form :category="cat" /> //тут весь компонент у которого будет свой show
</div>
getCurrentPosition () {
return new Promise((resolve, reject) => {
navigator.geolocation.getCurrentPosition(position => {
resolve(position.coords)
});
})
}
async mounted() {
this.getCurrentTime()
const coords = await this.getCurrentPosition()
this.getCurrentWeather(coords)
setInterval(() => this.getCurrentWeather(), 2000)
},