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:
@@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<div>
|
||||
<v-layout row wrap v-if="!readonly">
|
||||
<v-flex xs6>
|
||||
<v-row row wrap v-if="!readonly">
|
||||
<v-col xs6>
|
||||
<v-dialog v-model="dlgdate" persistent lazy full-width width="290px">
|
||||
<template v-slot:activator="{ on }">
|
||||
<v-text-field
|
||||
@@ -20,8 +20,8 @@
|
||||
<v-btn flat color="primary" @click="dlgdate = false">Close</v-btn>
|
||||
</v-date-picker>
|
||||
</v-dialog>
|
||||
</v-flex>
|
||||
<v-flex xs6>
|
||||
</v-col>
|
||||
<v-col xs6>
|
||||
<v-dialog v-model="dlgtime" persistent lazy full-width width="290px">
|
||||
<template v-slot:activator="{ on }">
|
||||
<v-text-field
|
||||
@@ -39,8 +39,8 @@
|
||||
<v-btn flat color="primary" @click="dlgtime = false">OK</v-btn>
|
||||
</v-time-picker>
|
||||
</v-dialog>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
</v-col>
|
||||
</v-row>
|
||||
<v-text-field
|
||||
v-if="readonly"
|
||||
v-model="formatDateTime"
|
||||
|
||||
Reference in New Issue
Block a user