修改demo说明

This commit is contained in:
jonyshi 2018-11-13 18:55:16 +08:00
parent b8e777ae2c
commit 1cfee95e92
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
/**
*
* @title 拖拽调整列的宽度
* @description 不支持tree结构的表头不支持和表头拖拽交互列一起使用
* @description 不支持tree结构的表头合并表头的table目前支持表头拖拽宽度交互列一起使用
*/
import React, { Component } from 'react';
import Table from '../../src';
@ -59,7 +59,7 @@ class Demo23 extends Component {
render() {
return <DragColumnTable columns={columns23} data={data23} bordered
dragborder={true}
draggable={false}
draggable={true}
/>;
}
}