`->live()` Not working as `->reactive()`
I don't know if I am doing something wrong here, but as of what I can see in the docs is that
reactive
is now replaced by live
? If I replace it, the afterStateUpdated
is not triggered.
Is there something else that needs to be done to the form or?
My code looks something like this
2 Replies
I think there was an open issue about this.
Just found the fix. At the top of the component class, I needed to declare
public $data
. In V2 thsi wasn't the case.