Center content vertically on Vuetify
Update for new vuetify version In v.2.x.x , we can use align and justify. We have below options for setup the horizontal and vertical alignment. PROPS align : ‘start’,’center’,’end’,’baseline’,’stretch’ PRPS justify : ‘start’,’center’,’end’,’space-around’,’space-between’ <v-container fill-height fluid> <v-row align=”center” justify=”center”> <v-col></v-col> </v-row> </v-container> For more details please refer this vuetify grid-system and you could check here … Read more