2019-06-27 11:29:33 +08:00
|
|
|
---
|
|
|
|
order: 4
|
|
|
|
title:
|
|
|
|
zh-CN: 垂直
|
|
|
|
en-US: Vertical
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
2019-06-27 13:47:28 +08:00
|
|
|
垂直的列表。
|
2019-06-27 11:29:33 +08:00
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Simplest Usage.
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
import { Descriptions } from 'antd';
|
|
|
|
|
|
|
|
ReactDOM.render(
|
|
|
|
<Descriptions title="User Info" layout="vertical">
|
|
|
|
<Descriptions.Item label="UserName">Zhou Maomao</Descriptions.Item>
|
|
|
|
<Descriptions.Item label="Telephone">1810000000</Descriptions.Item>
|
|
|
|
<Descriptions.Item label="Live">Hangzhou, Zhejiang</Descriptions.Item>
|
2019-08-30 12:31:10 +08:00
|
|
|
<Descriptions.Item label="Address" span={2}>
|
2019-06-27 11:29:33 +08:00
|
|
|
No. 18, Wantang Road, Xihu District, Hangzhou, Zhejiang, China
|
|
|
|
</Descriptions.Item>
|
2019-08-30 12:31:10 +08:00
|
|
|
<Descriptions.Item label="Remark">empty</Descriptions.Item>
|
2019-06-27 11:29:33 +08:00
|
|
|
</Descriptions>,
|
|
|
|
mountNode,
|
|
|
|
);
|
|
|
|
```
|