ant-design/components/pagination/demo/simple.md

27 lines
332 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 6
2016-07-29 10:15:31 +08:00
title:
zh-CN: 简洁
en-US: Simple mode
2016-03-31 09:40:55 +08:00
---
2015-07-13 16:04:07 +08:00
2016-07-29 10:15:31 +08:00
## zh-CN
简单的翻页。
## en-US
Simple mode.
2015-07-13 16:04:07 +08:00
2019-05-07 14:57:32 +08:00
```jsx
import { Pagination } from 'antd';
2015-07-13 16:04:07 +08:00
export default () => (
<>
<Pagination simple defaultCurrent={2} total={50} />
<br />
<Pagination disabled simple defaultCurrent={2} total={50} />
</>
);
2019-05-07 14:57:32 +08:00
```