diff --git a/ayanova/src/components/gzdatepicker.vue b/ayanova/src/components/gzdatepicker.vue index 1c1b1710..b3fc8d36 100644 --- a/ayanova/src/components/gzdatepicker.vue +++ b/ayanova/src/components/gzdatepicker.vue @@ -17,17 +17,18 @@ export default { input: date => this.$emit("input", new Date(date).toISOString()) } }); - }, - computed: { - listeners() { - return { - // Pass all component listeners directly to input - ...this.$listeners, - // Override input listener to work with v-model - input: event => this.$emit("input", event.target.value) - }; - } } +// , +// computed: { +// listeners() { +// return { +// // Pass all component listeners directly to input +// ...this.$listeners, +// // Override input listener to work with v-model +// input: event => this.$emit("input", event.target.value) +// }; +// } +// } };