data:{ dataLoaded:false, apiReply:{} }, methods:{ loadData:function(){ fetch('/api').then(function(response) { return response.json(); }).then(function(reply) { vm.apiReply = reply; vm.dataLoaded = true; }); } }, created:function(){ this.loadData(); } }); method & fetch api