How do I read the column headers of a table widget?

I want to get the column headers back as an array.

@umi You can get the column header using the tableColumns property of the table widget.

{{Table1.tableColumns.map((item)=> item.id)}}

@dancia Perfect, thanks