What's the right way to make `textarea` elements reactive?
I have a store that I pass to a component. When I output the store value, it is working for normal text (e.g inside
span), input elements, it does not show anything for textarea elements:
4 Replies
Isn't textarea like this:
<textarea>{props.data.value}</textarea>
This worked thank you!
I tripped over that bug one time too and asked about it here. It seems to be caused by some oddities of how the html element is implemented.
@Tito do you a link to docs about this?