mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-21 10:31:10 +08:00
20 lines
283 B
Markdown
20 lines
283 B
Markdown
# 迷你
|
|
|
|
- order: 4
|
|
|
|
迷你版本。
|
|
|
|
---
|
|
|
|
````jsx
|
|
var Pagination = antd.Pagination;
|
|
|
|
function onChange(page) {
|
|
console.log(page);
|
|
}
|
|
|
|
ReactDOM.render(
|
|
<Pagination size="small" onChange={onChange} total={50} />,
|
|
document.getElementById('components-pagination-demo-mini'));
|
|
````
|