Skip to content
Advertisement

Data is not being recognized in table in vuejs

I’m trying to call a get API to populate an array with details and show it in a table in vue.js but the console throws this error

JavaScript

Here’s the code that I have written,

JavaScript

I am able to receive the results from console.log() and here are the results

JavaScript

Can someone please explain why I still get this error ? P.S I am calling this component inside another page called dashboard, I doubt that could be the problem but here’s the code for that if it helps

JavaScript

Advertisement

Answer

There is a typo in your code, if you try v-for rather than :for, you should get the result you need.

In terms of the vue shorthand, it really is only v-bind: that can be abbreviated to :, definitely one to look out for in future!

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement