index.ts 343 B

123456789101112
  1. import Table from './src/Table.vue'
  2. import { ElTable } from 'element-plus'
  3. import { TableSetPropsType } from '@/types/table'
  4. export interface TableExpose {
  5. setProps: (props: Recordable) => void
  6. setColumn: (columnProps: TableSetPropsType[]) => void
  7. selections: Recordable[]
  8. elTableRef: ComponentRef<typeof ElTable>
  9. }
  10. export { Table }