Skip to content

useTable 钩子

  • useTable 是一个表格钩子,用于生成表格需要的事件方法

使用

js
import { useTable } from "profield";

const {
  rowclass,
  onSelectChange,
  handleTableChange,
  edit,
  del,
  look,
  customRow,
  SelectedRowKeys,
} = useTable(emit);

参数

参数说明类型默认值
emit事件触发器Function-

返回值

参数说明类型
rowclass表格行样式Function
onSelectChange表格行选择事件Function
handleTableChange表格分页事件Function
customRow表格行自定义事件Function
SelectedRowKeys表格行选择的 keyArray

杨利伟的博客