|
3 năm trước cách đây | |
---|---|---|
.. | ||
dist | 3 năm trước cách đây | |
src | 3 năm trước cách đây | |
LICENSE | 3 năm trước cách đây | |
README.md | 3 năm trước cách đây | |
index.d.ts | 3 năm trước cách đây | |
package.json | 3 năm trước cách đây |
A small wrapper for integrating axios to Vuejs
npm install --save axios vue-axios
And in your entry file:
import Vue from 'vue'
import axios from 'axios'
import VueAxios from 'vue-axios'
Vue.use(VueAxios, axios)
Just add 3 scripts in order: vue
, axios
and vue-axios
to your document
.
This wrapper bind axios
to Vue
or this
if you're using single file component.
You can use axios
like this:
Vue.axios.get(api).then((response) => {
console.log(response.data)
})
this.axios.get(api).then((response) => {
console.log(response.data)
})
this.$http.get(api).then((response) => {
console.log(response.data)
})
Please kindly check full documention of axios too