vue-axios-plus
TypeScript icon, indicating that this package has built-in type declarations

1.1.22 • Public • Published

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

Package Sidebar

Install

npm i vue-axios-plus

Weekly Downloads

1

Version

1.1.22

License

MIT

Unpacked Size

5.9 kB

Total Files

6

Last publish

Collaborators

  • luozhongshan