It seems that in this scenario the value of the field "content" is only updated on mount and not on the following changes of $content.
I tried to bind the prop, but then what happens is that the initial state of the field value which is an empty string, overwrites my store value $content.
The <Form.Input /> was not designed to be used in this manner. If you're using it, it will automatically take on the value of that specific field in the form via the Superform store.
I have a form where I want to reactively assign the value for a field, like so:
It seems that in this scenario the value of the field "content" is only updated on mount and not on the following changes of
$content
.I tried to bind the prop, but then what happens is that the initial state of the field value which is an empty string, overwrites my store value
$content
.