fix: typing reactive in ProjectSearch
see: info box under https://vuejs.org/guide/typescript/composition-api.html#typing-reactive
This commit is contained in:
parent
0e1f369f2a
commit
9814ff9667
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in New Issue