mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
27 lines
588 B
Markdown
27 lines
588 B
Markdown
---
|
|
layout: templateLayout
|
|
---
|
|
```vue
|
|
<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>
|
|
``` |