You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
422 B
18 lines
422 B
<!--分页-->
|
|
<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>
|
|
|