潘志宝
10 天以前 ca22cdd5550cfa0defb0f430c538698182cdaec1
提交 | 用户 | 时间
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 }