Using Axios in Vue.js

Vue.js + Axios tutorial for beginner

Hyouk Seo
spemer
1 min readAug 4, 2018

--

Axios is a library for http communication, making ajax requests, and so on. There is also a library called ‘vue-resource’ to do such things, but it’s said that it is not used well due to it’s slow update cycle and larger community of Axios.

Install Axios

Enter the following command line to install Axios.

Then add method in main.js so that Axios can be used globally.

Using Axios

Using a service called JSONPlaceholder, I’ll test the Axios I just installed. You can copy and paste following code.

Internet Explorer

Basically, IE doesn’t support promise, so you may need polyfill of es6-promise to enable it. You can install it with command below.

Next, just add one line below in your webpack config file.

Takeaway

Hope you enjoyed my short tutorial about Vue.js + Axios. Please feel free to contact me — visit my LinkedIn or website, or just send me an Email to ghsspower@gmail.com. Thanks!

--

--