Created
March 21, 2017 15:01
-
-
Save unr/32a4b52192dd3507025603aa75e38970 to your computer and use it in GitHub Desktop.
Simplistic Axios in VueJs Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const axiosconfig = { | |
baseurl: 'https://site.com/api/', | |
timeout: 30000, | |
}; | |
import Vue from 'vue'; | |
import axios from 'axios'; | |
// Setting up Axios on Vue Instance, for use via this.$axios | |
Vue.prototype.$axios = axios.create(axiosConfig); | |
// Default vars set up from localStorage (ie, user has come back) | |
Vue.prototype.$axios.defaults.headers.common.Authorization = `Bearer ${localStorage.getItem('id_token')}`; | |
Vue.prototype.$axios.defaults.headers.common['Access-Token'] = localStorage.getItem('auth_token'); | |
// Example app starts up, uses axios to collect posts. | |
new Vue({ | |
mounted() { | |
this.$axios.get('/posts').then((response) => { | |
this.posts = response.data; | |
}).catch((err) => { | |
console.log(err); | |
}); | |
}, | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Awesome, thanks!