ant-design/components/table/demo/bordered.md

46 lines
769 B
Markdown
Raw Normal View History

2015-08-11 20:05:52 +08:00
# 边框
- order: 10
2015-08-11 20:05:52 +08:00
添加表格边框线,`bordered={true}`。
---
````jsx
import { Table } from 'antd';
const columns = [{
2015-08-11 20:05:52 +08:00
title: '姓名',
dataIndex: 'name',
render: function(text) {
return <a href="javascript:;">{text}</a>;
}
}, {
title: '年龄',
dataIndex: 'age'
}, {
title: '住址',
dataIndex: 'address'
}];
const data = [{
2015-08-28 15:22:09 +08:00
key: '1',
2015-08-11 20:05:52 +08:00
name: '胡彦斌',
age: 32,
address: '西湖区湖底公园1号'
}, {
2015-08-28 15:22:09 +08:00
key: '2',
2015-08-11 20:05:52 +08:00
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号'
}, {
2015-08-28 15:22:09 +08:00
key: '3',
2015-08-11 20:05:52 +08:00
name: '李大嘴',
age: 32,
address: '西湖区湖底公园1号'
}];
2015-10-20 16:47:55 +08:00
ReactDOM.render(<Table columns={columns} dataSource={data} bordered={true} />
2015-08-11 20:05:52 +08:00
, document.getElementById('components-table-demo-bordered'));
````