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/controlled.md

31 lines
394 B

<cn>
#### 受控
受控制的页码。
</cn>
<us>
#### Controlled
Controlled page number.
</us>
```html
<template>
<a-pagination @change="onChange" :current="current" :total="50" />
</template>
<script>
export default {
data() {
return {
current: 3
}
},
methods: {
onChange(current) {
this.current = current
}
}
}
</script>
```