Vuetify - Center content in v-list-tile-content
As I wanted to use the Vuetify native classes but they had not the !important and the align-items: start of the v-list was overwriting my aling-center, I just added an inline style as follows:
<v-list-tile-content
:style="{
'align-items':'center'
}"
>
{{ element.content | capitalizeFirstLetter }}
</v-list-tile-content>
This was the solution that I was searching for. Hope it helps.