mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
573 B
573 B
layout |
---|
templateLayout |
<template>
<Pagination :size-list="sizeList" :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
},
sizeList: [10, 20, 30]
}
},
methods: {
changePage({ current, size}){
console.log(arguments)
}
}
}
</script>