Replace dummy data with API data
In the last video, we installed the Axios HTTP client and used it to request the movie data from the backend API that we can now use in our app.
In this video, we'll pass that data to the movie-list
component so it's ready to be displayed.
Passing down data
We've received the API data in the root Vue instance. Since we need this data in the movie-list
component, why didn't we just receive it there?
Click to load comments...