You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
512 B
27 lines
512 B
|
|
<cn>
|
|
#### 迷你
|
|
迷你版本。
|
|
</cn>
|
|
|
|
<us>
|
|
#### Mini size
|
|
Mini size pagination.
|
|
</us>
|
|
|
|
```html
|
|
<template>
|
|
<div id="components-pagination-demo-mini">
|
|
<a-pagination size="small" :total="50" />
|
|
<a-pagination size="small" :total="50" showSizeChanger showQuickJumper />
|
|
<a-pagination size="small" :total="50" :showTotal="total => `Total ${total} items`" />
|
|
</div>
|
|
</template>
|
|
<style scoped>
|
|
#components-pagination-demo-mini .ant-pagination:not(:last-child) {
|
|
margin-bottom: 24px;
|
|
}
|
|
</style>
|
|
```
|
|
|