工业互联网平台脚手架前端代码
houzhongjian
2024-09-18 23db5e5c6bfcbd7030a4003cd4ea18fbb920024f
提交 | 用户 | 时间
23db5e 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 }