You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can you provide a failing example? It can be on some online editor. It looks, that you dispatch event inside of the getter, which then observed (synchronously) by another element try to set its own property.
Cache mechanism wraps get and set methods, and saves dependent get calls invoked inside. To prevent an endless loop of setting and getting and to protect the correct dependency tree, it is forbidden to set properties inside of the getter.
One solution can be triggering event asynchronously, like this:
emitting custom event from inner element element and attempting to set outer element property causes "Try to set key in get call" error
The text was updated successfully, but these errors were encountered: