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](https://secure.gravatar.com/avatar/137cfb8154159de606ea2b633255fcb5/?default=https%3A%2F%2Fvanillicon.com%2F137cfb8154159de606ea2b633255fcb5_200.png&rating=g&size=120)
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.render
to something that HTML will display. Something as simple as usingJSON.stringify()
might work.Kevin