Reputation: 668
I think trying to describe it can get confusing, so from the images, I think the problem is going to be much clearer...
If I use app
in v-navigation-drawer
, it comes close to what I would like, but I don't want v-navigation-drawer
to occupy the entire side, overlapping the main bar (v-app-bar
). What I would like you to occupy only the side, but "without" overlapping the main bar (v-app-bar
), but mostly, don't "throw" the v-content
to the bottom of the screen
<v-navigation-drawer v-model="drawer">
<v-navigation-drawer v-model="drawer" app>
Upvotes: 0
Views: 4298
Reputation: 6922
remove <header>
tag around <v-navigation-drawer>
and simply override vuetify css using !important
here is a working example: Live Demo
Upvotes: 2