Abount Reactivity between vue2 and vue3
Version
3.0.11
Reproduction link
https://codepen.io/qiulijun/pen/xxgBMqG
Steps to reproduce
- open the link
- You will see that
obj.done = false
is not work, but vue2 is ok
What is expected?
drive to render as expected
What is actually happening?
not render
I know following is work:
const obj = reactive({ done: true })
obj.done = false
but, is there any other way?