Listing Todos
In this episode we are going to use axios library to get all of our todos from October CMS api and then list them using Vue 2.
Now it’s time for us to actually start building our application, and the first thing that we are going to do is list our todo items from the October CMS API.
To make that listing as simple as possible we are going to use axios library which has a great API for doing GET, PUT, etc. requests and is also promise based.
Also you are going to learn how to create a Vue component and how to import that component into your application.