Skip to content

Commit

Permalink
docs(comp:table): set table demo head count column align to left (#1805)
Browse files Browse the repository at this point in the history
  • Loading branch information
threedayAAAAA authored Jan 16, 2024
1 parent 972bd64 commit 785ba33
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/components/table/demo/TreeTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,10 @@ const columns: TableColumn<Data>[] = [
{
title: 'Count',
dataKey: 'cnt',
align: 'end',
align: {
title: 'start',
cell: 'end',
},
sortable: {
sorter: (curr, next) => curr.cnt - next.cnt,
},
Expand Down

0 comments on commit 785ba33

Please sign in to comment.