Unsure of correct way to apply clipped prop to <v-navigation-draw/> in vuetify application to force the navigation drawer to sit below the app-bar. What I've tried.
Created a fresh project:
$ vue create mylayout
$ cd mylayout
$ vue add vuetify
Cut & paste the Baseline pre-made layout (https://vuetifyjs.com/en/getting-started/pre-made-layouts/) into src/App.vue
Edit the <v-navigation-drawer/>
<v-navigation-drawer
v-model="drawer"
app
clipped <--- added this prop
>
Edit the <v-app-bar/>
<v-app-bar
app
color="indigo"
dark
clipped-left <--- added this prop
>
View in FireFox 75.0, and click the app-bar Hamburger icon, and the navigation drawer 'pops over' the app-bar. I've poured over the docs and samples for hours with no-joy. I know I'm missing something, but it's escaping me.