You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
530 B
TypeScript
22 lines
530 B
TypeScript
import Table from './src/Table.vue'
|
|
import { ElTable } from 'element-plus'
|
|
import { TableColumn, TableSetProps } from './src/types'
|
|
|
|
export type {
|
|
TableColumn,
|
|
TableSlotDefault,
|
|
Pagination,
|
|
TableSetProps,
|
|
TableProps
|
|
} from './src/types'
|
|
|
|
export interface TableExpose {
|
|
setProps: (props: Recordable) => void
|
|
setColumn: (columnProps: TableSetProps[]) => void
|
|
addColumn: (column: TableColumn, index?: number) => void
|
|
delColumn: (field: string) => void
|
|
elTableRef: ComponentRef<typeof ElTable>
|
|
}
|
|
|
|
export { Table }
|