当在一页应用程序 v-navigation-drawer 上滚动时,Vue 路由器导航有间隙
Vue router nav has gap when scrollable on one page application v-navigation-drawer
gap at bottom of nav
任何建议都有助于使此侧导航消除 v-navigation-drawer 底部的间隙。在默认 VUE 中,我有这段代码。我正在使用 NUXT 和 VUE 路由器
<template>
<v-app dark>
<v-navigation-drawer
color="#0d354c"
v-model="drawer"
:mini-variant="miniVariant"
:clipped="clipped"
fixed
app
>
</template>
当使用 VUE 路由器和 nuxt 时,有您的 default.vue 页面。默认情况下,您必须将 fixed 设置为 true 而不是 false。
fixed: true,
gap at bottom of nav 任何建议都有助于使此侧导航消除 v-navigation-drawer 底部的间隙。在默认 VUE 中,我有这段代码。我正在使用 NUXT 和 VUE 路由器
<template>
<v-app dark>
<v-navigation-drawer
color="#0d354c"
v-model="drawer"
:mini-variant="miniVariant"
:clipped="clipped"
fixed
app
>
</template>
当使用 VUE 路由器和 nuxt 时,有您的 default.vue 页面。默认情况下,您必须将 fixed 设置为 true 而不是 false。
fixed: true,