[Vuejs]-How to attach a handlebar to your navigation-drawer

3👍

Navigation drawer with handlebar: https://jsfiddle.net/grinjo/jw3sh9n8/81

This did the magic:

Vue:

<v-btn
    absolute
    right
    fab
    @click="drawer = !drawer"
    :style="{top: '50%', transform:'translate(75%, -50%)'}"
>

CSS:

.v-navigation-drawer--mini-variant, .v-navigation-drawer {
    overflow: visible !important;
}
👤Arthur

Leave a comment