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.
ant-design-vue/components/pagination/demo/basic.md

27 lines
271 B

<cn>
#### 基本
基础分页。
</cn>
<us>
#### Basic
Basic pagination.
</us>
```html
<template>
<a-pagination v-model="current" :total="50" />
</template>
<script>
export default {
data() {
return {
current: 2,
}
}
}
</script>
```