Skip to content

Commit

Permalink
feat(table): accept ref on orders and columns option
Browse files Browse the repository at this point in the history
  • Loading branch information
kiaking committed Nov 14, 2022
1 parent 4d2cece commit c79ec70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/composables/Table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export interface TableCellBase {
export interface TableCellText extends TableCellBase {
type: 'text'
icon?: any
value?: string | ((value: any) => string)
value?: string | ((value: any, record: any) => string)
link?(value: any, record: any): string
color?: TableCellTextColor | ((value: any, record: any) => TableCellTextColor)
iconColor?: TableCellTextColor | ((value: any, record: any) => TableCellTextColor)
Expand Down

0 comments on commit c79ec70

Please sign in to comment.