-
-
Notifications
You must be signed in to change notification settings - Fork 836
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
Error in nextTick: "RangeError: Maximum call stack size exceeded" #169
Comments
UGH. Of course I just found the answer here: remove the template tags... |
Btw, I think this is a CRITICAL thing to mention in the docs, I spent a long time trying to figure it out. |
The unmet peerDependency is only a notice. And the I will add a section in the docs. ✌️ |
I just noticed that at time when using non-valid HTML tags it might cause this as well |
The same problem, Even if I delete the template, an error will still occur. TypeError: Cannot read property 'getContext' of undefined |
Expected Behavior
Followed your example exactly, and expected to see an example chart.
Actual Behavior
get a blank page and the error message:
Error in nextTick: "RangeError: Maximum call stack size exceeded"
This happens whether I route to the component alone, or try to include it in a parent vue. I notice that when installing via npm, there is an unmet peer dependency of vue 2.4.2 (I have 2.3.4 for compatibility reasons with quasar), but even upgrading vue to that version results in the same error.
Environment
Code
Here is the exact code of my Barchar.vue file:
Also tried multiple variations of component export or not
components: { 'bar-chart': Bar }
,components: { Bar }
, naming or notname: BarChart
etc, with no difference to blank page except that the error would change toError in mounted hook: "TypeError: Cannot read property 'getContext' of undefined"
The text was updated successfully, but these errors were encountered: