mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 04:58:55 +08:00
16 lines
200 B
Markdown
16 lines
200 B
Markdown
# 跳转
|
|
|
|
- order: 3
|
|
|
|
快速跳转到某一页。
|
|
|
|
---
|
|
|
|
````jsx
|
|
import { Pagination } from 'antd';
|
|
|
|
ReactDOM.render(
|
|
<Pagination showQuickJumper defaultCurrent={2} total={500} />,
|
|
mountNode);
|
|
````
|