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.
You can use tag
prop.
<router-link to="/foo" tag="button">foo</router-link>
Please use v-slot if you use 3.0+ (thanks to Romain and Jeff)