the only pattern i can see here is that only those values are being returned that has no values. Try debugging. Just add some values to display_name and name and then console log this.$route.fullPath and see whats the result. @skeith22
Aug 22, 2020
3
Level 22
Vue this.$route is NOT picking up other query parameters
I just noticed there is something wrong with Vue.
when you console.log this this.$route.fullPath. this is the result
users?page=3&per_page=15&name=&display_name=&order_by=desc
BUT when you console this.$route.query this only contains { display_name: "", name: "" }
page, per_page, and order_by is not in the query object.
Level 22
I found the issue, it was my mistake. looks like I was deleting the properties of it on another component. it took me quite a while to find it because there are too many component files.
Please or to participate in this conversation.