Update : Works in both version of Vuetify 1.5 and 2:
To centralize v-card-text
content just apply the class=text-center
v-card-title
and v-card-actions
are flex components so by adding class="justify-center"
to both you can centralize the whole thing:
<v-card-title primary-title class="justify-center">
<div>
<h3 class="headline pink--text text--accent-2">Superdry</h3>
<div>Rookie Aviator Patched BomberproductItem.description</div>
</div>
</v-card-title>
<v-card-actions class="justify-center">
<v-btn flat color="orange">Add to Cart</v-btn>
</v-card-actions>