You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you change the pagination size it will check if page is the same and if so never trigger the change event because it's a single event for both size and page.
No way to read the page from outside except using refs.
I had to put a watcher on currentPageSize using this.$watch inside this.$nextTick inside the created() method.
Also the select is not styled like the material docs suggest
The text was updated successfully, but these errors were encountered:
You linked the commit and all but in that file the select still calls handleChange and handleChange still checks for page number and doesn't emit the event
That said, if you remove this line: if (this.currentPage !== page) {
When you change the pagination size it will check if page is the same and if so never trigger the change event because it's a single event for both size and page.
No way to read the page from outside except using refs.
I had to put a watcher on currentPageSize using this.$watch inside this.$nextTick inside the created() method.
Also the select is not styled like the material docs suggest
The text was updated successfully, but these errors were encountered: