I want to add a parameter to a URL inside a href attribute. I'm using Vue js and those parameters should be dynamic. How can I do this?
<a href="localhost/doctors?{{ dynamic content }}">
or
<a href="localhost/doctors?${"dynamic content"}>
not working. Vue gives me an error that I should bind it. but I tried it too. Couldn't make it work. what is the correct way? I'm a newbie to Vue js.