fix: typing reactive in ProjectSearch

see: info box under https://vuejs.org/guide/typescript/composition-api.html#typing-reactive
This commit is contained in:
Dominik Pschenitschni 2025-01-21 13:38:11 +01:00
parent 0e1f369f2a
commit 9814ff9667
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ const emit = defineEmits<{
'update:modelValue': [value: IProject]
}>()
const project = reactive<IProject>(new ProjectModel())
const project: IProject = reactive(new ProjectModel())
watch(
() => props.modelValue,