19 lines
422 B
Vue
19 lines
422 B
Vue
<!--分页-->
|
|
<template>
|
|
<el-pagination
|
|
:page-size.sync="page.size"
|
|
:total="page.total"
|
|
:current-page.sync="page.page"
|
|
style="margin-top: 8px;"
|
|
layout="total, prev, pager, next, sizes"
|
|
@size-change="crud.sizeChangeHandler($event)"
|
|
@current-change="crud.pageChangeHandler"
|
|
/>
|
|
</template>
|
|
<script>
|
|
import { pagination } from '@crud/crud'
|
|
export default {
|
|
mixins: [pagination()]
|
|
}
|
|
</script>
|