-
-
Notifications
You must be signed in to change notification settings - Fork 7k
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
[Bug Report][3.5.17] Failed to execute 'observe' on 'ResizeObserver' #19713
[Bug Report][3.5.17] Failed to execute 'observe' on 'ResizeObserver' #19713
Comments
The error seems to only occurs when manually change Vue version and tweaking code at the same time. The error couldn't be replicated when Vue version & code stays the same, they don't change when running a project. demo Is this issue causing any issue in your project? |
Looks like https://vuejs.org/guide/essentials/template-refs.html#refs-inside-v-for but the v-for is sometimes leaking through the slot which would make sense if the ref wasn't also provided by the slot. |
I have same issue. In my case, it is not possible to change the value. |
Same thing here actually: #19685 I can reproduce both of these in our dev environment but not play.vuetifyjs.com |
Pass in |
that'll break the virtual scrolling |
What about |
fixes #19713 fixes #19685 Co-authored-by: Kael <[email protected]>
When using `v-for` with `VSelect` component, the mentioned error appears in the console, preventing users from selecting an item. This was a bug in Vuetify, as mentioned here: [Vuetify Issue #19713](vuetifyjs/vuetify#19713). This bug was fixed in version 3.6.4 so this migrates vuetify to that version.
Environment
Vuetify Version: 3.5.17
Vue Version: 3.4.25
Browsers: Chrome 124.0.0.0
OS: Windows
Steps to reproduce
Change the Version of Vue to 3.4.24 or 3.4.25. Then just add v-for to the v-select Tag like v-for="item in [1,2,3]".
Then click on one of the select-fields.
Expected Behavior
No Error should appear in the Browser Console.
Actual Behavior
An Error appears in the Browser Console.
Reproduction Link
https://play.vuetifyjs.com/#...
The text was updated successfully, but these errors were encountered: