diff --git a/components/vc-pagination/Pagination.tsx b/components/vc-pagination/Pagination.tsx index d0c3b7152a..71c416b24a 100644 --- a/components/vc-pagination/Pagination.tsx +++ b/components/vc-pagination/Pagination.tsx @@ -283,6 +283,7 @@ export default defineComponent({ }, runIfEnter(event, callback, ...restParams) { if (event.key === 'Enter' || event.charCode === 13) { + event.preventDefault(); callback(...restParams); } },