You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Vue3 by setCellContents set=IF(Sheet2!B1>1, “true”, “false”) the following exception is reported Uncaught TypeError: Cannot read properties of undefined (reading ' licenseKeyValidityState')
But under Nodejs it works fine
Thank you for sharing the issue result. I was able to replicable the error response, and while we keep executing the same method over and over, we get an additional error
I haven't been able to identify the reason behind it yet, but as the syntax is correct, I believe we can call it a bug. I will update the thread with any new findings.
I think I found the problem, using ref in Vue3 turns it into a responsive object. This operation may affect the original object, the correct operation is to not use or use reactive, if you must use ref you can use toRaw wrapping, this error may not only occur in setting formulas. Maybe you guys can mark the docs
This is the demo link https://stackblitz.com/edit/vitejs-vite-mwacnqr2?file=src%2FApp.vue
Description
Description
In Vue3 by setCellContents set=IF(Sheet2!B1>1, “true”, “false”) the following exception is reported Uncaught TypeError: Cannot read properties of undefined (reading ' licenseKeyValidityState')
But under Nodejs it works fine
Video or screenshots
Demo
https://stackblitz.com/edit/vitejs-vite-e4bvdm7a?file=src%2FApp.vue
HyperFormula version
v3.0.0
Your framework
Vue3
Your environment
windows edge
The text was updated successfully, but these errors were encountered: