fix API console

This commit is contained in:
Johann150 2022-10-18 22:00:40 +02:00
parent 7257338077
commit fed41d8d15
Signed by untrusted user: Johann150
GPG Key ID: 9EE6577A2A06F8F1
1 changed files with 2 additions and 0 deletions

View File

@ -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);