鞍钢鲅鱼圈能源管控系统前端代码
houzhongjian
2024-12-26 cb6cd26221d8bb2c4b1dca44a87332e9fe6f56ab
提交 | 用户 | 时间
cb6cd2 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 }