42 lines
917 B
Vue
42 lines
917 B
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"></pagination>
|
|
<vc-button @click="changeValue">改值</vc-button>
|
|
</div>
|
|
<div>
|
|
<pagination v-model="current" :total="total"></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: 500,
|
|
}
|
|
},
|
|
methods: {
|
|
changeValue () {
|
|
this.current = 4
|
|
},
|
|
getValue () {
|
|
alert(this.current)
|
|
},
|
|
},
|
|
components: {
|
|
Pagination,
|
|
vcButton: Button,
|
|
},
|
|
}
|
|
</script>
|