Determine if Axios request is done

Viewed 11826

Is there any way to determine if a Axios request like the following received an answer and is done?

axios.get('/api')
.then(response => this.data = response.data);
1 Answers
Related