[Vuejs]-Vue Navigation Drawer

0👍

One way is:

add to style

.v-navigation-drawer--mini-variant .hideme {
  display:none;
}

add class to the div you want to hide

<div class="pa-2 hideme">

Actually, the better way is to add v-list-group--sub-group to the class of the div

<div class="pa-2 v-list-group--sub-group">

Both are kind of hacky, but I’ve tried using v-list-group’s directly, but it’s not easy

Leave a comment