I am trying to build a search page with Vue and I want the query text that the user enters in an input field to be reactive with the query parameter in the URL eg:
input: foo url: http://localhost:8080/search?query=foo
and if the user continues to type bar
in the input field, I want to get the URL to updated to http://localhost:8080/search?query=foobar without the navigating via the router.