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
The problem now is that when setProps reassigns the same object, the property getter returns early because it thinks the object isn't changing, so none of the dependencies are notified.
I think the best solution would be to call $forceUpdate if the prop that setProps is setting strictly equals the existing prop.
Version
1.0.0-beta.18
Reproduction link
https://codesandbox.io/s/vx48ovm23
Steps to reproduce
Create a component that uses v-html directive and test that it .is() the right element type if the v-if directive evaluates to true
What is expected?
is('div') returns true
What is actually happening?
is('div') returns false
The text was updated successfully, but these errors were encountered: