Code-Pop / real-world-vue

The application that we build in Vue Mastery's courses starting with Real World Vue
https://www.vuemastery.com
1.02k stars 494 forks source link

for some reason EventCard components are not being shown in EventList page/component while using axios. #11

Closed ssoumyajit closed 4 years ago

ssoumyajit commented 5 years ago

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:

`

EventCard.vue:

` ![Screenshot 2019-09-11 13 07 03](https://user-images.githubusercontent.com/35195382/64669690-248dd000-d495-11e9-8e51-bb16c856a03a.png)