[Vuejs]-Align text vertically in a card (Vuetify)

0👍

You can use flex align provided by vuetify, add to your card tag d-flex align-center:

<v-card outlined color="red" height="450" class="d-flex align-center">

DEMO

Leave a comment