fix: 分页隐藏

Former-commit-id: f7c92b79de
This commit is contained in:
april 2023-07-13 11:17:22 +08:00
parent bca211f48c
commit 7ed2387ea3
1 changed files with 2 additions and 2 deletions

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({