[Vuejs]-Table is not displaying, when i pull data from database

1👍

I was facing the same problem recently. Inside the axios module, try the following:

axios
  .get("api/subject")
  .then(response => (this.subjects = response.data));

Leave a comment