41 lines
687 B
Vue
41 lines
687 B
Vue
|
<template>
|
||
|
<app-text-field :value="stringValue" @input="input" :label="label" type="date"></app-text-field>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
|
||
|
import DateTimeUtils from "../lib/DateTimeUtils";
|
||
|
|
||
|
export default {
|
||
|
props: {
|
||
|
value: {
|
||
|
required: false,
|
||
|
type: Date
|
||
|
},
|
||
|
|
||
|
label: {
|
||
|
required: false,
|
||
|
type: String,
|
||
|
default: null
|
||
|
}
|
||
|
},
|
||
|
|
||
|
computed: {
|
||
|
stringValue() {
|
||
|
return DateTimeUtils.formatDateForEdit(this.value);
|
||
|
}
|
||
|
},
|
||
|
|
||
|
methods: {
|
||
|
input(val) {
|
||
|
let d = DateTimeUtils.toDate(val + " 00:00");
|
||
|
this.$emit("input", d);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
|
||
|
</style>
|