mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-15 19:52:15 +01:00
refactor time entry and projecttaskdropdown components to not rely on pinia stores
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user