I followed the lessons carefully. But When I made the API call using axios from a dummy database (db.json) I don't see the events on the EventList page. I did not use any style as mention in the lessons. Also created a very small API just for testing purpose.
I followed the lessons carefully. But When I made the API call using axios from a dummy database (db.json) I don't see the events on the EventList page. I did not use any style as mention in the lessons. Also created a very small API just for testing purpose.
db.json:
{ "events":[ { "id": 1, "title": "StreetVibez" }, { "id": 2, "title": "BuildItUp" }, { "id": 3, "title": "RandomCircle" } ] }
EventsList.vue:`
Events Listing
EventCard.vue:
{{ event.title }}