Vuetify Version: 2.0.7
Vue Version: 2.6.10
Browsers: Chrome 76.0.3809.100
OS: Windows 10
https://codepen.io/shlomitsibony/pen/BaBLypv
drawer under the toolbar
drawer not under the toolbar
https://codepen.io/shlomitsibony/pen/BaBLypv
removing temporary attribute will solve it
Unfortunately that is not how they are intended to work. Here is a workaround for your issue but this is not a bug.
Description from official documentation:
A clipped drawer rests under the application toolbar
A little more extensive description that clipped do not work for some combinations of other properties would save lot of time... Possible to update the documentation if this is default behaviour.
The workaround above pushes the drawer down. Anything at the bottom of the drawer are unable to see, so at least we also need :height="`calc(100vh - ${$vuetify.application.top}px)`"
.
And in the latest version (2.3.6), the overlay z-index
is now 7 rather than 5 in v2.0.7. This darkens the toolbar as well. So we also need to use CSS to change the z-index
of v-app-bar
to at least 7.
Most helpful comment
Description from official documentation:
A clipped drawer rests under the application toolbar
A little more extensive description that clipped do not work for some combinations of other properties would save lot of time... Possible to update the documentation if this is default behaviour.