<v-row> <v-col v-for="(item, i) in items" :key="i" class="d-flex" cols="12" sm="6" md="6" lg="4" > <v-card outlined max-width="100%" height="100%" class="d-flex flex-column" > <v-img :src="item.img" style="max-height:214px" height="214px" /> <v-card-title class="justify-center" v-text="item.title" /> <v-card-text :style="'font-size:0.9rem'" height="100%" v-html="item.text" /> <v-spacer /> <v-card-
