📅  最后修改于: 2022-03-11 14:55:42.247000             🧑  作者: Mango
// GET /someUrl
this.$http.get('/someUrl').then(response => {
// get body data
this.someData = response.body;
}, response => {
// error callback
});