[Vuejs]-Vuetify how to get a working link in a v-btn

4👍

VBtn has a href prop for this usage.

<v-btn :href="x.link">Share</v-btn>

vue-router‘s purpose is to make the routing within your application (in the case of a single page application).
To link to an external web site, you need an href attribute.

👤Rtbo

Leave a comment