I need to add query string to url in vue component.
as an example, This is my url: https://example.com/users/
I want to concat ?f%5Bfullname-lk,email-lk%5D=Atousa to url with no refresh page.
I need to have https://example.com/users/?f%5Bfullname-lk,email-lk%5D=Atousa
If this be in url my component will be refreshed.
I used this.$router.push({ query: ?f%5Bfullname-lk,email-lk%5D=Atousa }), but it gives me https://example.com/users/?query=f%5Bfullname-lk,email-lk%5D=Atousa which I don't.
And window.location.assign refreshes the page.