mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
588 B
588 B
layout |
---|
templateLayout |
<template>
<Pagination @on-change="changePage" show-quick-jumper :locking="pagination.locking" :current="pagination.current" :size="pagination.size" :total="pagination.total"></Pagination>
</template>
<script>
export default {
data(){
return {
pagination: {
locking: false,
size: 10,
current: 1,
total: 100
},
}
},
methods: {
changePage({ current, size}){
console.log(arguments)
}
}
}
</script>