changed all v-layout and v-flex to v-row and v-col respectively, lot's of messed up grids now :(

This commit is contained in:
2019-10-31 19:57:06 +00:00
parent b3be49ddaf
commit 482f228407
17 changed files with 117 additions and 121 deletions

View File

@@ -14,9 +14,9 @@
<hr /> -->
<div>
<v-layout align-center justify-left row wrap>
<v-row align-center justify-left row wrap>
<template v-for="item in this.$store.state.formCustomTemplate[formKey]">
<v-flex v-if="item.type" :key="item.fld" xs12 sm6 lg4 xl3 px-2>
<v-col v-if="item.type" :key="item.fld" xs12 sm6 lg4 xl3 px-2>
<div v-if="item.type === 'currency'">
CURRENCY CONTROL HERE
</div>
@@ -48,9 +48,9 @@
>UNKNOWN CUSTOM CONTROL TYPE: {{ item.type }}</span
>
</div>
</v-flex>
</v-col>
</template>
</v-layout>
</v-row>
</div>
</div>
</template>