mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-30 06:09:34 +08:00
20 lines
375 B
Markdown
20 lines
375 B
Markdown
# 改变
|
|
|
|
- order: 2
|
|
|
|
改变每页显示条目数。
|
|
|
|
---
|
|
|
|
````jsx
|
|
import { Pagination } from 'antd';
|
|
|
|
function onShowSizeChange(current, pageSize) {
|
|
console.log(current, pageSize);
|
|
}
|
|
|
|
ReactDOM.render(
|
|
<Pagination showSizeChanger onShowSizeChange={onShowSizeChange} defaultCurrent={3} total={500} />,
|
|
document.getElementById('components-pagination-demo-changer'));
|
|
````
|