Welcome to 16892 Developer Community-Open, Learning,Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

gap at bottom of nav Any advice would be helpful to make this side nav remove the gap at the bottom of the v-navigation-drawer. In Default VUE I have this code. I'm using NUXT and VUE router

    <template>
  <v-app dark>
    <v-navigation-drawer
      color="#0d354c"
      v-model="drawer"
      :mini-variant="miniVariant"
      :clipped="clipped"
      fixed
      app 
    >
    
</template>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
4.4k views
Welcome To Ask or Share your Answers For Others

1 Answer

When using VUE router and nuxt there is your default.vue page. You must set fixed to true instead of false by default.

  fixed: true,

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to 16892 Developer Community-Open, Learning and Share
...