# vue-axios **Repository Path**: aokser/vue-axios ## Basic Information - **Project Name**: vue-axios - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2017-07-30 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # vue-axios A small wrapper for integrating axios to Vuejs ## How to install: ### CommonJS: ``` 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) ``` ### 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 `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) }) ```