linmasahiro / vue3-table-lite

A simple and lightweight data table component for Vue.js 3. Features sorting, paging, row check, dynamic data rendering, supported TypeScript, and more.
https://vue3-lite-table.vercel.app/
MIT License
248 stars 73 forks source link

If column is showing field called 'id' its adding some weird artifacts #117

Closed Boardtale closed 2 months ago

Boardtale commented 2 months ago

I do not care about sorting, it is disabled but whenever I am adding column that is showing field 'id' it is adding broken sorting arrays in column name. image

const columns = [ { label: 'Date', field: 'id', width: '1%' }, { label: 'Message', field: 'message' }, { label: 'Count', field: 'count' }, ];

Boardtale commented 2 months ago

When set sortable to false. It is fixed