I have two urls to make the request: link and link
I would like to make requests for both in parallel, currently I have done separately as in the code below:
axios
.get('https://api.tuuris/cities')
.then(response => {
this.info = response.data
})
.catch(error => {
console.log(error)
this.errored = true
})