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_okzsafi_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

  • kthorngrenkthorngren Posts: 20,269Questions: 26Answers: 4,765

    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 using columns.render to something that HTML will display. Something as simple as using JSON.stringify() might work.

    Kevin

Sign In or Register to comment.