fix(devtools): use cleanupBuffer instead of modifying _buffer#6812
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
_bufferis not always present so I adapted the type but maybe this isn't the right fixcc @Akryum