From 81c891998fb06e13c516dd2e5babacda2cee7bf3 Mon Sep 17 00:00:00 2001 From: Spaceman Date: Fri, 14 Nov 2025 00:19:44 +0800 Subject: [PATCH] fix(Pagination): Did not automatically jump to the previous page --- components/vc-pagination/Pagination.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/components/vc-pagination/Pagination.tsx b/components/vc-pagination/Pagination.tsx index 2bbd5951ef..6b72e140ab 100644 --- a/components/vc-pagination/Pagination.tsx +++ b/components/vc-pagination/Pagination.tsx @@ -123,6 +123,7 @@ export default defineComponent({ newState.stateCurrent = current; } this.setState(newState); + this.__emit('change', this.stateCurrent, this.statePageSize); }, }, methods: {