Search code examples
buttonvue.jsvue-router

Enclosing a router-link tag in a button in vuejs


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.


Solution

  • 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)