@hbtv/dnd-table
v1.0.4
Published
可拖拽表格
Downloads
3
Keywords
Readme
@hbtv/dnd-table
使用方法
import { DndTable } from './';
const columns = [
{ title:'ID', dataIndex:'id' },
{ title:'标签', dataIndex:'label' },
{ title:'键名', dataIndex:'value' },
];
const dataSource = [
{ id:'1', label:'标题', 'value':'title' },
{ id:'2', label:'描述', 'value':'description' },
{ id:'3', label:'内容', 'value':'content' },
];
<DndTable rowKey="id" columns={columns} dataSource={dataSource} />
MIT