Can I wrap or enclose a router-link
tag in a button
tag?
When I press the button, I want it to route me to the desired page.
@choasia's answer is correct.
Alternatively, you could wrap a button
tag in a router-link
tag like so:
This is not so clean because your button will be inside a link element (). However, the advantage is that you have a full control on your button, which may be necessary if you work with a front-end framework like Bootstrap.
I have never used this technique on buttons, to be honest. But I did this on divs quite often...