I have a route in vue-router: /items?page=1&rowsPerPage=25&sortBy=state&sortType=desc
every Time i change one of the params (sortBy or page=2) i want to stay on the same site, without reloading the components i include. Currently everytime i update router.replace({ ...router.currentRoute, query: params })
the page is reloaded.
How to avoid this? Is there any good pattern for this data-table use case?