Closed
Description
At the moment, the update
method re-renders the component.
I think it should also run all component and child component watchers, otherwise users will need to use Vue.nextTick
in cases like this—https://github.com/lmiller1990/vue-test-utils/blob/309aebcad7c736cd926a469a7d724ea18fc0f54c/docs/en/guides/testing-async-components.md
I'm trying to think if this could cause unintended side effects. Making the change to update
doesn't break any of the tests.