-
-
Notifications
You must be signed in to change notification settings - Fork 33.7k
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
Maximum call stack exceeded when using with custom components #7788
Comments
Duplicate of #7786 |
I still get this error, but I haven't got the time to put together a reproduction case right now. I know that it exists in 2.5.16 still and going back to 2.5.13 resolves the issue and the error looks like vue/src/core/observer/traverse.js Lines 19 to 24 in 84a9a9d
|
I also get this error, when EDIT: happens only, when store is in strict mode. |
Confirming this issue when store in a strict mode (using nuxt) |
Confirming too with v2.5.15 and v2.5.17 |
I'm possibly seeing this as well. Can confirm that disabling strict mode in the vuex store seemed to fix the issue. |
Yeah, strict mode does seem to fix the issue. |
var selfObj= {}; |
I was brought to this issue by searching for: However, it didn't have anything to do with the naming of components. It's probably related to what @Gyanxie posted above. My offender was the code snippet below:
This might prove useful to the next person that runs into this cryptic error message |
Version
2.5.14
Reproduction link
https://jsfiddle.net/50wL7mdz/175425/
Steps to reproduce
What is expected?
It is expected to render a custom UI component for date picking.
What is actually happening?
The element is not being render as the console is filled with errors.
[Vue warn]: Error in render: "RangeError: Maximum call stack size exceeded", vue.js:597
RangeError: Maximum call stack size exceeded, vue.js:1745
The issue is related to the latest vue.js version as it is working as expected with all up to 2.5.13.
The text was updated successfully, but these errors were encountered: