How to show proxy array of object in vue 3 in datatable
How to show proxy array of object in vue 3 in datatable
I want to show an array of object in vue 3 in datatable but it did not show the data
This discussion has been closed.
I want to show an array of object in vue 3 in datatable but it did not show the data
Answers
I'm not familiar with Vue but in general the web page will show something like
[object Object]for Javascript objects. If this is the problem then you will need to manipulate the data usingcolumns.renderto something that HTML will display. Something as simple as usingJSON.stringify()might work.Kevin