-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Description
在table组件中将[
{
key: "1",
name: "John Brown",
age: 32,
address: "New York No. 1 Lake Park",
tags: ["nice", "developer"],
},
{
key: "2",
name: "Jim Green",
age: 42,
address: "London No. 1 Lake Park",
tags: ["loser"],
},
{
key: "3",
name: "Joe Black",
age: 32,
address: "Sidney No. 1 Lake Park",
tags: ["cool", "teacher"],
},
];传入data-souce 在vue工具中可以看到tags字段变成了vnode 并且报错
Uncaught (in promise) Error: 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.
at checkRecursiveUpdates (runtime-core.esm-bundler.js?5c40:388)
at flushJobs (runtime-core.esm-bundler.js?5c40:362)
ps:代码使用vue3 + antd 2.0.0-beta10 使用setup模式创建组件