[Vuejs]-How do i Fix api data not displaying with vue and axios

0👍

One of the things that is likely to go wrong especially as there are no error messages showing is forgetting to run your json-server package. This should run simultaneously as your development tools.
First run:

npm run json

While the above is still running, open another terminal and run this:

npm run serve

Leave a comment