vuejs jQuery-like ajax facade plugin for axios library
The library can be used as a vuejs plugin:
import vHttp from 'vue-http';
Vue.use(vHttp);
Set global configuration values that will be applied to every request
$ajaxSetup({
headers: {
'Authorization': 'bearer hello-world'
},
responseType: 'stream'
});
Executes a GET request to the specific resource
Executes a POST request to the specific resource
Executes a DELETE request
Executes a PUT request to the specific resource