diff --git a/packages/client/src/components/form/textarea.vue b/packages/client/src/components/form/textarea.vue index a379bde14..24fe867e3 100644 --- a/packages/client/src/components/form/textarea.vue +++ b/packages/client/src/components/form/textarea.vue @@ -67,6 +67,8 @@ const { modelValue } = toRefs(props); // modelValue is read only, so a separate ref is needed. const v = $ref(modelValue.value); +watch(modelValue, () => v = modelValue.value); + let focused = $ref(false); let changed = $ref(false); let inputEl: HTMLTextAreaElement | null = $ref(null);