0👍
Use the extension-height
prop of the app-bar..
<v-app-bar dark extension-height="100%">
<v-toolbar-title>Page title</v-toolbar-title>
<v-spacer></v-spacer>
<v-btn icon @click="extended=!extended">
<v-icon>mdi-calendar</v-icon>
</v-btn>
<template v-slot:extension v-if="extended">
<v-date-picker full-width dark />
</template>
</v-app-bar>
- [Vuejs]-How do I bring up "Are you sure you want to leave page?" popup in vue.js router?
- [Vuejs]-Smooth Nuxt/Vue transition on the rest of the page when displaying and hidding a list of elements
Source:stackexchange.com