el-table懒加载
<el-table
:data="tableData"
row-key="id"
lazy
:load="load"
:tree-props="{ children: 'children', hasChildren: 'hasChildren' }"
></el-table>
tableData中children可以没有,但必须有hasChildren,有下级时为true,没有为false。
如果控制台报错Maximum call stack size exceeded
那就是row-key绑定的值重复了