[Vuejs]-How to make navigation drawer shrink (mini version) once hamburger is clicked?

1👍

Replace :mini-variant.sync="mini" with :mini-variant.sync="toggleDrawer" and remove the v-model. This binds your Vuex store’s variable with Vuetify’s default expand/collapse behaviour. Moreover, you can remove "mini" from your data attributes.

Leave a comment