Vue3 recursion limit exceeded
See original GitHub issueDescription
I’m using the flicking component to render a list from the demo examples but I keep getting a Maximum recursive updates exceeded. This means you have a reactive effect that is mutating its own dependencies and thus recursively triggering itself. Possible sources include component template, render function, updated hook or watcher source function.
warning.
This breaks the built version of my application and causes the browser tab to freeze.
Steps to check or reproduce
<Flicking :options="{ circular: true }">
<div v-for="idx in list" class="flicking-panel w-80" :key="idx">{{ idx }}</div>
</Flicking>
import Flicking from "@egjs/vue3-flicking";
import "@egjs/vue3-flicking/dist/flicking.css";
components: {
Flicking
},
data() {
return {
list: [0, 1, 2, 3, 4],
}
}
Not sure if it’s an issue with my implementation or something else.
Issue Analytics
- State:
- Created 2 years ago
- Comments:11 (5 by maintainers)
Top Results From Across the Web
VUEjs 3 Warning: Maximum recursive updates exceeded
currently I am facing the problem that Vue issues a warning: "Maximum recursive updates exceeded. This means you have a reactive effect that ......
Read more >Maximum recursive updates exceeded in component - how to fix
This is the approach i found that works, but I am getting an error in console: “Maximum recursive updates exceeded in component ....
Read more >Maximum recursive updates exceeded when trying to render ...
Uncaught (in promise) Error: Maximum recursive updates exceeded. This means you have a reactive effect that is mutating its own dependencies ...
Read more >InternalError: too much recursion - JavaScript - MDN Web Docs
The JavaScript exception "too much recursion" or "Maximum call stack size exceeded" occurs when there are too many function calls, or a function...
Read more >Vue recursive components: Rendering nested comments
Explore how you can use recursive components in Vue to manage tree-like structured data with an example comments section.
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
@megasanjay Of course! I’ve already made a PR that fixes this issue 😃
@WoodNeck That was quick!. Let me know when it get pushed up to the main branch 😃