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

1.0.0 • Public • Published

vve-vue-axios

A small wrapper for integrating axios to Vuejs

How to install:

CommonJS:

npm install --save axios vve-vue-axios

And in your entry file:

import Vue from 'vue'
import axios from 'axios'
import VueAxios from 'vve-vue-axios'
 
Vue.use(VueAxios, axios)

Script:

Just add 3 scripts in order: vue, axios and vve-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:

Vue.axios.get(api).then((response) => {
  console.log(response.data)
})
 
Vue.$axios.get(api).then((response) => {
  console.log(response.data)
})
 
this.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

Thanks

https://github.com/imcvampire/vue-axios

Readme

Keywords

Package Sidebar

Install

npm i vve-vue-axios

Weekly Downloads

1

Version

1.0.0

License

MIT

Unpacked Size

6.45 kB

Total Files

7

Last publish

Collaborators

  • nianqin