Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have in my application the following standard structure:

<div id="app">
 <v-app>
   <v-app-bar app/>

   <v-navigation-drawer app />

   <v-main>
    <v-container fill-height>
     <v-row align="center">
      <v-col>
      </v-col>
     </v-row>
    </v-container>
   </v-main>
 </v-app>
</div>

Because v-row is not a direct child of v-app, I cannot center v-row in the page by seemingly any means available. Could anyone tell me if the problem is my missing something vuetify provides, or my markup structure is wrong, or is this simply impossible in vuetify?

Note: I have already read this post and it does NOT solve the problem, because it requires v-app as the direct parent

Thanks very much :)


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

1 Answer

等待大神答复

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