Version: v2.16.2
In remote mode total props == currentPerPage instead of totalRecords so there is only one page visible, for example 1 - 30 of 30 and "Next" button is disabled. I do everything according to "remote mode" documentation. How can I fix it?


totalRows is undefined, I can't find the reason.

Ok, changed :totalRows="totalRecords" to :total-rows="totalRecords" and it's working fine.
Docs need updating to reflect this, i spent a long time trying to figure this out
Hey @sam-g-roberts this isn't a library-specific issue, more of your specific Vue implementation. The props would work fine as they are in string templates but for HTML templates you need to use kebab case:
https://vuejs.org/v2/guide/components-props.html#Prop-Casing-camelCase-vs-kebab-case
Most helpful comment
Ok, changed :totalRows="totalRecords" to :total-rows="totalRecords" and it's working fine.