diff --git a/src/components/Pagination/index.js b/src/components/Pagination/index.js index 8c9cd812..f029b86b 100644 --- a/src/components/Pagination/index.js +++ b/src/components/Pagination/index.js @@ -90,13 +90,13 @@ const SbPagination = { handlePreviousPage() { if (!this.isFirstDisabled) { this.updateValue(this.value - 1) - this.$emit('on-previous-page', this.value) + this.$emit('on-previous-page', this.value - 1) } }, handleNextPage() { if (!this.isLastDisabled) { this.updateValue(this.value + 1) - this.$emit('on-next-page', this.value) + this.$emit('on-next-page', this.value + 1) } }, onPageChange(page) {