From 6ebf3bc7d407d2d40f5222ff7f8734d245529cbb Mon Sep 17 00:00:00 2001 From: tianvier Date: Mon, 22 May 2023 16:48:07 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E5=88=86=E9=A1=B5=E7=BB=84=E4=BB=B6=E6=9B=B4=E6=96=B0=E7=88=B6?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=E5=8F=82=E6=95=B0=E8=AD=A6=E5=91=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Former-commit-id: 8edbb1f048eb9bce38fcfdcac25a6f3b10b00cba --- src/components/Pagination/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Pagination/index.vue b/src/components/Pagination/index.vue index 2953fab8..1aee707c 100644 --- a/src/components/Pagination/index.vue +++ b/src/components/Pagination/index.vue @@ -55,7 +55,7 @@ const props = defineProps({ }, }); -const emit = defineEmits(["pagination"]); +const emit = defineEmits(["pagination", "update:page", "update:limit"]); const currentPage = useVModel(props, "page", emit);