[Vue warn]: 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.
时间: 2023-05-14 20:04:50 浏览: 561
Ref Effect baseHandler reactive Proxy Vue 3
这个错误通常是由于在响应式效果中修改其自身依赖项而导致的递归触发。可能的原因包括组件模板、渲染函数、更新钩子或观察者源函数。为了解决这个问题,你可以检查你的代码,确保没有在响应式效果中修改其自身依赖项。你也可以尝试使用 Vue Devtools 来调试你的代码,以找出问题所在。
阅读全文