[Vuejs]-Console.table does not show Observer

1👍

Use console.dir(this.data) to output a browse-able object you can click through.

You will also likely get better results if you try console.log(JSON.stringify(this.data))

Leave a comment