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
I had a issue in IE10 with high cpu usage and flickering elements so did some profiling of the app and noticed a endless loop in vue-clamp.
I cannot fully say what causes the problem because IE developer tools are outright horrible but those are my findings:
Maybe the real problem lies with resize-detector by not properly detecting resize loops.
Anyway, here is my workaround: Add resize-observer-polyfill package
import ResizeObserver from "resize-observer-polyfill" if (!("ResizeObserver" in window)) { window.ResizeObserver = ResizeObserver }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I had a issue in IE10 with high cpu usage and flickering elements so did some profiling of the app and noticed a endless loop in vue-clamp.
I cannot fully say what causes the problem because IE developer tools are outright horrible but those are my findings:
Maybe the real problem lies with resize-detector by not properly detecting resize loops.
Anyway, here is my workaround:
Add resize-observer-polyfill package
The text was updated successfully, but these errors were encountered: