add:acs项目搭建

This commit is contained in:
2024-09-25 14:09:38 +08:00
parent 4190e6eb87
commit aa5891282d
1458 changed files with 148651 additions and 17 deletions

View File

@@ -0,0 +1,18 @@
<!--分页-->
<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>