resize error
See original GitHub issueVersion
5.1.2
Steps to reproduce
- vue 3.0
- onMounted(() => { window.addEventListener(‘resize’, () => { echarts.resize() }) })
- change window’s width
What is expected?
echarts to resize on window resize
What is actually happening?
error: resize` should not be called during main process
example link
https://codesandbox.io/s/quizzical-mahavira-3gvst?file=/src/App.vue
Issue Analytics
- State:
- Created 2 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
"error: (-215:Assertion failed) func != 0 in function 'resize ...
I'm stuck with this problem too. This is the first time I found opencv function receive only float data, but why? And I...
Read more >Troubleshoot Image Resizing problems - Cloudflare Support
Follow these steps to troubleshoot the most common issues with Image Resizing. Requests without resizing enabled Error responses from...
Read more >recovery of disks or volumes fails with "Resize error"
Symptoms. You have a disk-level backup (of entire machine, individual disks or volumes) and try to restore this backup. Restore fails with:
Read more >Resize Pictures\Image Resizer Error - Too Much MetaData ...
Pop up Message Can't resize the following pictures." Commit unsuccessful because too much metadata changed." occurs so must go back and edit ...
Read more >APFS Container Resizing Issues 49153 - Apple Developer
Running into strange error when attempting to resize a APFS container. Example APFS container is currently 499g with 161g free. Attempted to resize...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Instead of
ref
, please try to useshallowRef
to contain the echarts instance.For performance reasons. Any third-party instances, not only echarts, should not use
ref
in vue3. There is no reason to deep watch the properties inside a third-party instance.