开发笔记 vue3
一个细节问题找半天,特此记录下
vue3 本地报警告: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 ***ponent template, render function, updated hook or watcher source function.
–》百度翻译:
超过了最大递归更新数。这意味着你有一个反应效应,它会改变自己的依赖关系,从而递归地触发自己。可能的来源包括组件模板、呈现函数、更新的钩子或观察者源函数。
解决方法
写的 v-for 循环 key 绑定的是一个对象,
!](https://img-blog.csdnimg.***/51efe897d9cd463fac283ec3ca9648c5.png)
key值更改为数据里的唯一值,保证不重复,