-
-
Notifications
You must be signed in to change notification settings - Fork 8.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Suspense component kills reactive changes #2214
Comments
Tried to make a minimal repro link: https://codepen.io/meteorlxy/pen/QWNYKwe If the slots of That happens in both |
The code below is not responding: <template #default>
<div>
<span>{{ msg }}</span>
</div>
</template> This code is reactive: <template #default>
<div>
{{ msg }}
</div>
</template> It seems that there is a bug related to the watch/deep or something like that. |
Made another repro link: https://codesandbox.io/s/vuenext-v300-suspense-reactivity-forked-1v92v?file=/src/index.js
|
It's not relate to reactive. |
Hi |
Version
3.0.0
Reproduction link
https://codesandbox.io/s/vuenext-v300-suspense-reactivity-qglxd
Steps to reproduce
There is a really simple form with just two inputs. When you change the input data in the sandbox, you will see that the form state won't change between Suspense tags.
If the repo is not opening, please use the refresh button on top left of the sandbox browser.
What is expected?
The
code
tag under the Suspense component should be reactive.What is actually happening?
The reactive text is not changing.
The text was updated successfully, but these errors were encountered: