ant-design-vue/components/pagination/demo/controlled.md

31 lines
394 B
Markdown
Raw Normal View History

2018-03-10 14:39:12 +00:00
<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>
```