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.
31 lines
394 B
31 lines
394 B
7 years ago
|
<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>
|
||
|
```
|
||
|
|