`v-for` over `reactive([])` regression
Vue version
Latest main
branch
The latest release, 3.3.0-alpha.5, doesn't have this problem
I believe this was introduced by #5752.
Link to minimal reproduction
Steps to reproduce
Click the button.
What is expected?
No error.
What is actually happening?
Error.
Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'el')
System Info
No response
Any additional comments?
It seems to be related to the use of reactive()
. If I switch the example to use ref()
everything works fine.