-
-
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
fix(devtools): use cleanupBuffer instead of modifying _buffer #6812
Conversation
In iframes the hook object is different: https://github.com/vuejs/devtools/blob/8dd0ef228a6c6a3913082b0fc2f34bffb777f6fc/packages/app-backend-core/src/hook.ts#L78-L105 |
Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
@posva @Akryum We hit a serious performance issue in dev mode in Vue v3.2.41 vs v3.2.40 which forced us to pin our version and we suspect it was caused by this PR as the performance tools point to |
We ran into the same issue. Unmounting of components in dev mode when devtools is installed is significantly slower (if I would have to guess by a factor of 10). Uninstalling devtools resolves that. |
This performance issue should hopefully be fixed by vuejs/devtools@60aeed2 |
…6812) Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
At the moment the Playground SFC is broken when devtools are installed. I noticed
_buffer
is not always present so I adapted the type but maybe this isn't the right fixcc @Akryum