问题
I have a Navigation Drawer which does not push content to the side on moving it from mini.variant
to opened
.
<v-navigation-drawer
class="chatbar--gradient"
app
right
:mini-variant.sync="closed"
mini-variant-width="70"
width="250px"
></v-navigation-drawer>
App.vue
:
<v-app dark>
<app-navbar></app-navbar>
<navigation-bar></navigation-bar>
<v-slide-y-transition>
<chat-sidebar></chat-sidebar>**
<!-- THIS IS THE MODAL FROM ABOVE -->
**
</v-slide-y-transition>
<v-content>
<keep-alive>
<transition name="fade">
<router-view :key="$route.fullPath" />
</transition>
</keep-alive>
<display-name-entry-modal></display-name-entry-modal>
</v-content>
<v-footer v-if="$vuetify.breakpoint.smAndUp" tile padless height="3px" app class="pageFooter"></v-footer>
<bottom-nav v-if="$vuetify.breakpoint.smAndDown"></bottom-nav>
</v-app>
来源:https://stackoverflow.com/questions/57523432/vuetify-app-navigation-drawer-does-not-push-content-to-the-side