2018-03-10 14:39:12 +00:00
|
|
|
<cn>
|
|
|
|
#### 受控
|
|
|
|
受控制的页码。
|
|
|
|
</cn>
|
|
|
|
|
|
|
|
<us>
|
|
|
|
#### Controlled
|
|
|
|
Controlled page number.
|
|
|
|
</us>
|
|
|
|
|
2019-10-09 10:32:23 +00:00
|
|
|
```tpl
|
2018-03-10 14:39:12 +00:00
|
|
|
<template>
|
2019-09-28 12:45:07 +00:00
|
|
|
<a-pagination @change="onChange" :current="current" :total="50" />
|
2018-03-10 14:39:12 +00:00
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
2019-09-28 12:45:07 +00:00
|
|
|
current: 3,
|
|
|
|
};
|
2018-03-10 14:39:12 +00:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
onChange(current) {
|
2019-09-28 12:45:07 +00:00
|
|
|
this.current = current;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
2018-03-10 14:39:12 +00:00
|
|
|
</script>
|
|
|
|
```
|