How to show proxy array of object in vue 3 in datatable
How to show proxy array of object in vue 3 in datatable
safi_okz
Posts: 4Questions: 3Answers: 0
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.render
to something that HTML will display. Something as simple as usingJSON.stringify()
might work.Kevin