diff --git a/packages/pagination/src/pager.vue b/packages/pagination/src/pager.vue index fd1f10a73..62f716ea4 100644 --- a/packages/pagination/src/pager.vue +++ b/packages/pagination/src/pager.vue @@ -96,11 +96,11 @@ let showNextMore = false; if (pageCount > pagerCount) { - if (currentPage > pagerCount - 2) { + if (currentPage > pagerCount - 3) { showPrevMore = true; } - if (currentPage < pageCount - 2) { + if (currentPage < pageCount - 3) { showNextMore = true; } }