refactor time entry and projecttaskdropdown components to not rely on pinia stores

This commit is contained in:
Gregor Vostrak
2024-07-09 18:40:12 +02:00
parent 375cee7589
commit a519c119d4
12 changed files with 201 additions and 256 deletions

View File

@@ -9,7 +9,9 @@ defineProps<{
end: string | null;
}>();
const emit = defineEmits(['changed']);
const emit = defineEmits<{
changed: [start: string, end: string | null];
}>();
const open = ref(false);
</script>