给所有组件添加name属性预防未知bug!!!

This commit is contained in:
shizhong
2023-06-13 21:05:25 +08:00
parent 1e52823524
commit 6f266fb967
82 changed files with 551 additions and 1800 deletions

View File

@ -2,19 +2,19 @@
<template>
<el-pagination
v-show="total > 0"
class="float-right mt-15px mb-15px"
:background="true"
layout="total, sizes, prev, pager, next, jumper"
:page-sizes="[10, 20, 30, 50, 100]"
v-model:current-page="currentPage"
v-model:page-size="pageSize"
:background="true"
:page-sizes="[10, 20, 30, 50, 100]"
:pager-count="pagerCount"
:total="total"
class="float-right mt-15px mb-15px"
layout="total, sizes, prev, pager, next, jumper"
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
/>
</template>
<script setup>
<script name="Pagination" setup>
import { computed } from 'vue'
const props = defineProps({