ant-design/components/pagination/demo/all.md
2022-05-21 22:14:15 +08:00

31 lines
392 B
Markdown

---
order: 10
title:
zh-CN: 全部展示
en-US: Show All
---
## zh-CN
展示所有配置选项。
## en-US
Show all configured prop.
```tsx
import { Pagination } from 'antd';
import React from 'react';
const App: React.FC = () => (
<Pagination
total={85}
showSizeChanger
showQuickJumper
showTotal={total => `Total ${total} items`}
/>
);
export default App;
```