-
-
Notifications
You must be signed in to change notification settings - Fork 159
Severe Memory Leak #1083
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
Comments
Potentially related issue, although solved a long time ago: #302 |
Confirmed, I have the same issue |
any fix yet? |
Can you try setting |
still laggy |
Sadly there is still a memory leak, it just got reduced to ~300KB per Cycle instead of ~1MB. Steps to reproduce are exactly the same as above. @sahilrajthapa do you want to investigate further or should I take over? |
@Jasenkoo disabling transitions does not fix the leak. |
@ngrippa Last time I looked into the issue, I found that the Vue.js transition component was retaining memory due to detached elements. I had attached a screenshot on the PR, where the transition component showed a retained size of 20%. I had found similar issues on the Vue.js repo — 11782 and 12181. I think we can find other issues too. Even if those issues are closed, we can still test for detached elements in the transition component examples; the problem should be reproducible there too. |
@sahilrajthapa Thanks for the quick reply. It's weird, because the detached elements are getting more and more, thus leaking memory, even with Is that really not the case for you? I will try to create a minimal repro then. |
@ngrippa If that's the case, then I think we should look into it. However, I won't be able look into it for few days. |
Describe the bug
Whenever opening/closing the DatePicker about one MB of Memory is leaked.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
The Popup should deallocate all memory when closed or, at least, only consume the memory once. Currently, additional memory is allocated every time the Popup is opened.
This leads to severe Memory Leaks in Web Applications with many DatePickers / Users clicking the DatePickers many times.
Desktop & mobile (please complete the following information):
npm create vue@latest
with only this package installed. I am not sure why this is not happending on Stackblitz.The text was updated successfully, but these errors were encountered: