mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 20:20:00 +08:00
31 lines
374 B
Markdown
31 lines
374 B
Markdown
|
---
|
||
|
order: 10
|
||
|
title:
|
||
|
zh-CN: 全部展示
|
||
|
en-US: Show All
|
||
|
---
|
||
|
|
||
|
## zh-CN
|
||
|
|
||
|
展示所有配置选项。
|
||
|
|
||
|
## en-US
|
||
|
|
||
|
Show all configured prop.
|
||
|
|
||
|
```jsx
|
||
|
import { Pagination } from 'antd';
|
||
|
|
||
|
ReactDOM.render(
|
||
|
<div>
|
||
|
<Pagination
|
||
|
total={85}
|
||
|
showSizeChanger
|
||
|
showQuickJumper
|
||
|
showTotal={total => `Total ${total} items`}
|
||
|
/>
|
||
|
</div>,
|
||
|
mountNode,
|
||
|
);
|
||
|
```
|