1.1.22 • Published 6 years ago

vue-axios-plus v1.1.22

Weekly downloads
1
License
MIT
Repository
-
Last release
6 years ago

vue-axios

A small wrapper for integrating axios to Vuejs

How to install:

npm:

npm install --save axios vue-axios-plus

And in your entry file:

import Vue from 'vue'
import VueAxios from 'vue-axios-plus'

需配置store.actions.logout
Vue.prototype.axios = VueAxios({
  router,
  store,
  config: {
    timeout: 5000,
    baseURL: process.env.baseURL,
  },
});

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)
})

this.axios.get(api).then((response) => {
  console.log(response)
})

this.$http.get(api).then((response) => {
  console.log(response)
})