We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey,
I'm on the @next branch I might be wrong but the totalPage returns me a NaN
NaN
Does not work :
totalPage () { return this.tablePagination === null ? 0 : this.last_page - this.firstPage + 1 },
Work :
totalPage () { return this.tablePagination === null ? 0 : this.lastPage - this.firstPage + 1 },
;-)
vuetable-2/src/components/VuetablePaginationMixin.vue
Line 34 in 98f7791
The text was updated successfully, but these errors were encountered:
See #515.
Sorry, something went wrong.
No branches or pull requests
Hey,
I'm on the @next branch
I might be wrong but the totalPage returns me a
NaN
Does not work :
Work :
;-)
vuetable-2/src/components/VuetablePaginationMixin.vue
Line 34 in 98f7791
The text was updated successfully, but these errors were encountered: