[Vuejs]-Local icon in vuetify button

0πŸ‘

βœ…

<v-btn icon>
  <v-img src="path/to/your/icon.svg" />
</v-btn>

As described in Vuetify’s docs, since the v-btn uses a slot for content, you can put any element you want in that slot.
The icon prop simply tells the v-btn to be especially styled for icons (round & flat).

Leave a comment