| Server IP : 34.87.99.72 / Your IP : 216.73.217.31 Web Server : Apache/2.4.46 (Unix) OpenSSL/1.1.1n System : Linux zlock-bitnami-lamp-prod-v2-vm 4.19.0-16-cloud-amd64 #1 SMP Debian 4.19.181-1 (2021-03-19) x86_64 User : bitnami ( 1000) PHP Version : 7.4.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /home/bitnami/htdocs/app/node_modules/vue-axios/ |
Upload File : |
# vue-axios
A small wrapper for integrating axios to Vuejs
## How to install:
### CommonJS:
```bash
npm install --save axios vue-axios
```
And in your entry file:
```js
import Vue from 'vue'
import axios from 'axios'
import VueAxios from 'vue-axios'
Vue.use(VueAxios, axios)
```
### Script:
Just add 3 scripts in order: `vue`, `axios` and `vue-axios` to your `document`.
## Usage:
This wrapper bind `axios` to `Vue` or `this` if you're using single file component.
You can use `axios` like this:
```js
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](https://github.com/axios/axios) too