HTTP VUE 2 personalizado

// GET /someUrl
this.$http.get('/someUrl').then(response => {

  // get body data
  this.someData = response.body;

}, response => {
  // error callback
});
Restu Wahyu Saputra