diff --git a/odpc.client/src/components/DateRangePicker.vue b/odpc.client/src/components/DateRangePicker.vue
index c8442a6..f7cabfd 100644
--- a/odpc.client/src/components/DateRangePicker.vue
+++ b/odpc.client/src/components/DateRangePicker.vue
@@ -8,7 +8,7 @@
id="fromDate"
ref="fromDateRef"
v-model="fromDateModel"
- @change="onFromDateChange"
+ @change="$emit('update:fromDate', fromDateModel)"
:max="today"
/>
@@ -21,7 +21,7 @@
id="untilDate"
ref="untilDateRef"
v-model="untilDateModel"
- @change="onUntilDateChange"
+ @change="$emit('update:untilDate', untilDateModel)"
:max="today"
/>
@@ -33,7 +33,7 @@ import { ref, watch } from "vue";
const props = defineProps<{ fromDate: string; untilDate: string }>();
-const emit = defineEmits<{
+defineEmits<{
(e: "update:fromDate", payload: string): void;
(e: "update:untilDate", payload: string): void;
}>();
@@ -51,9 +51,6 @@ watch(
}
);
-const onFromDateChange = () => emit("update:fromDate", fromDateModel.value);
-const onUntilDateChange = () => emit("update:untilDate", untilDateModel.value);
-
const fromDateRef = ref