houzhongjian
2024-08-08 820397e43a0b64d35c6d31d2a55475061438593b
提交 | 用户 | 时间
820397 1 import Table from './src/Table.vue'
H 2 import { ElTable } from 'element-plus'
3 import { TableSetPropsType } from '@/types/table'
4 import TableSelectForm from './src/TableSelectForm.vue'
5
6 export interface TableExpose {
7   setProps: (props: Recordable) => void
8   setColumn: (columnProps: TableSetPropsType[]) => void
9   selections: Recordable[]
10   elTableRef: ComponentRef<typeof ElTable>
11 }
12
13 export { Table, TableSelectForm }