Hi guys,
I have this textarea
<textarea :v-model="editCase.ai_short_title!" />
Here is my variable inside the setup script
const editCase = ref<caseStudy | null>(null)
I am assigning a value to that variable on a button click
editCase.value = caseStudy
but the textarea appears empty and the value of editCase.ai_short_title does not change when I add some text inside.
What am I doing wrong? I expected the textarea do have the ai_short_title value inside, also, that value is not null, it has text inside it.
Thank you!