I'm currently utilizing Vuetify and implementing the Navigation Drawer
component.
I am attempting to replicate a similar navigation layout found here.
The fixed menu on the left should maintain its width even when resizing the browser window.
Upon reaching the designated breakpoint (where the width remains unchanged), the menu should disappear and be replaced by an icon button that can reopen the menu when hovered over.
This is precisely what I am aiming to achieve, but despite numerous attempts, I have been unsuccessful in getting it to work.
Could anyone provide assistance?
Below is my code snippet :
<v-navigation-drawer v-model="drawer" class="nav-container d-flex">
<div class="options">
<li></li> //items..
</div>
</v-navigation-drawer>
<div style="min-width: 100px; max-width: 100%;" class="d-flex flex-column flex-grow-1 flex-shrink-0">
//content
</div>
Is there a way to achieve this functionality using Vuetify exclusively?