[Vuejs]-Increase v-toolbar-side-icon Vuetify component

0👍

Solved!

Finally just replace with <v-toolbar> and his content for:

<v-btn icon @click.stop="drawer = !drawer">
 <v-icon>menu</v-icon>
</v-btn>

Then we can use the size property.

Leave a comment