We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
2.6.12
https://codesandbox.io/s/billowing-butterfly-qe2yv?file=/src/App.vue
See codesandbox for details, When the close button is clicked, the Vuecomponent memory will not be released compared to before the click.
close
I found that when the setup() {}, of the child component is commented out, the memory can be released normally.
setup() {},
Could release memory normally.
Memory leaks!
The text was updated successfully, but these errors were encountered:
@pikax @antfu The detailed reproduction steps are:
npm install
npm run serve
take heap snapshort
A
B
Then we will find: B does not release memory compared to A
I think this is a memory leak bug, can you take a moment to look at this issue and PR?
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Version
2.6.12
Reproduction link
https://codesandbox.io/s/billowing-butterfly-qe2yv?file=/src/App.vue
Steps to reproduce
See codesandbox for details, When the
close
button is clicked, the Vuecomponent memory will not be released compared to before the click.I found that when the
setup() {},
of the child component is commented out, the memory can be released normally.What is expected?
Could release memory normally.
What is actually happening?
Memory leaks!
The text was updated successfully, but these errors were encountered: