mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
501 B
25 lines
501 B
import type { ColumnGroupType } from 'ant-design-vue/es/table' |
|
|
|
export const tableColumns: (Omit<ColumnGroupType<any>, 'children'> & { dataIndex?: string; name: string })[] = [ |
|
{ |
|
name: 'Column Name', |
|
dataIndex: 'column_name', |
|
key: 'column_name', |
|
width: 250, |
|
}, |
|
{ |
|
name: 'Column Type', |
|
dataIndex: 'column_type', |
|
key: 'uidt', |
|
width: 250, |
|
}, |
|
{ |
|
name: 'Select Option', |
|
key: 'dtxp', |
|
}, |
|
{ |
|
name: 'Action', |
|
key: 'action', |
|
align: 'right', |
|
}, |
|
]
|
|
|