ant-design-vue/components/pagination/demo/index.vue
2017-11-13 18:49:03 +08:00

48 lines
1.0 KiB
Vue

<template>
<div>
<div style="margin-bottom:10px">
<pagination :simple="simple" :current="current" :total="total"></pagination>
</div>
<div style="margin-bottom:10px">
<pagination :current="current" :total="total" @change="onchange"></pagination>
<vc-button @click="changeValue">改值</vc-button>
</div>
<div>
<pagination v-model="current" :total="total" :showTotal="showTotal"></pagination>
<vc-button @click="changeValue">改值</vc-button>
<vc-button @click="getValue">当前值</vc-button>
</div>
</div>
</template>
<script>
import '../style'
import { Pagination, Button } from 'antd/index'
export default {
data () {
return {
simple: true,
current: 1,
total: 483,
}
},
methods: {
changeValue () {
this.current = 4
},
getValue () {
alert(this.current)
},
showTotal (total) {
return `${total}`
},
onchange (page) {
alert(page)
},
},
components: {
Pagination,
vcButton: Button,
},
}
</script>