[Vuejs]-How can I collapse child items in hover sidebar in Vuetify?

-1👍

First your collapse menus to display none.

Create a class, for example:

.display-item {
   display: block;
}

as for the on click try this Jquery code:

$("put the drop down class here").click(function(){
  $("put your tage here").toggleClass("display-item");
});

Leave a comment