In my Vue.js component I make async call to API on mounted lifecycle hook:
mounted() { this.getDataFromApi() .then(data => { this.events = data.data;