Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
4.4k views
in Technique[技术] by (71.8m points)

vue.js - Vue router nav has gap when scrollable on one page application v-navigation-drawer

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>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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,

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...