fix: 分页隐藏

Former-commit-id: f7c92b79de8da65aee1465bc2af8bf34f0380b3a
This commit is contained in:
april
2023-07-13 11:17:22 +08:00
parent bca211f48c
commit 7ed2387ea3

View File

@@ -1,5 +1,5 @@
<template>
<div :class="'pagination ' + { hidden: hidden }">
<div :class="{ hidden: hidden }" class="pagination">
<el-pagination
v-model:current-page="currentPage"
v-model:page-size="pageSize"
@@ -14,7 +14,7 @@
</template>
<script setup lang="ts">
import { computed, PropType } from "vue";
import { PropType } from "vue";
import { scrollTo } from "@/utils/scroll-to";
const props = defineProps({