选煤厂生产管理平台前端代码
houzhongjian
2024-11-22 82c159b99ca114bc8189e681bde3b4491a81af1c
提交 | 用户 | 时间
82c159 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 }