0.0.1 • Published 4 years ago

@littlewhiteloti/vue-axios v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

vue-axios

A small wrapper for integrating axios to Vuejs

Support matrix

VueJS \ VueAxios1.x2.x3.x
1.x
2.x
3.x

How to install:

ES6 Module:

npm install --save axios vue-axios

Import libraries in entry file:

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

Usage in Vue 2:

Vue.use(VueAxios, axios)

Usage in Vue 3:

const app = Vue.createApp(...)
app.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:

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 too

0.0.1

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago