mirror of
https://github.com/frappe/books.git
synced 2024-11-10 15:50:56 +00:00
Simplify template
This commit is contained in:
parent
d102d14448
commit
fff4c07e5b
@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<div class="form-group" v-if="!onlyInput">
|
||||
<label>{{ docfield.label }}</label>
|
||||
<div :class="{ 'form-group': !onlyInput }">
|
||||
<label v-if="!onlyInput">{{ docfield.label }}</label>
|
||||
<flat-pickr
|
||||
:value="value"
|
||||
:config="config"
|
||||
@ -9,18 +9,11 @@
|
||||
>
|
||||
</flat-pickr>
|
||||
</div>
|
||||
<flat-pickr
|
||||
v-else
|
||||
:value="value"
|
||||
:config="config"
|
||||
class="form-control"
|
||||
@on-change="emitChange"
|
||||
>
|
||||
</flat-pickr>
|
||||
</template>
|
||||
<script>
|
||||
import flatPickr from 'vue-flatpickr-component';
|
||||
import Data from './Data';
|
||||
|
||||
export default {
|
||||
extends: Data,
|
||||
data() {
|
||||
@ -29,7 +22,7 @@ export default {
|
||||
enableTime: true,
|
||||
noCalendar: true
|
||||
}
|
||||
}
|
||||
};
|
||||
},
|
||||
components: {
|
||||
flatPickr
|
||||
|
Loading…
Reference in New Issue
Block a user