Skip to content

Instantly share code, notes, and snippets.

@martinandersen3d
Forked from pastranastevenaz/axiosget.js
Created April 29, 2019 20:57
Show Gist options
  • Save martinandersen3d/02127425a70311fe27f4ec90dbf91cb4 to your computer and use it in GitHub Desktop.
Save martinandersen3d/02127425a70311fe27f4ec90dbf91cb4 to your computer and use it in GitHub Desktop.
Example of an axios get request using arrow functions
var albums = [];
axios.get('https://jsonplaceholder.typicode.com/albums')
.then(response =>{
this.albums = response.data
})
.catch(error =>{
console.log(error);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment