I am trying to build a filter component with Vue , example i have 2 input form 1. Min Price and 2 Max Price and I want the query text that the user enters in an input field to be reactive with the query parameter in the URL example i input min price : 1000
localhost/minprice=1000
when i input maxprice : 2000 the url be like :
localhost/minprice=1000&maxprice=2000
how to add multiple query parameter in the address without change the last parameter url i have ?
thanks