table中需要加载树形数据,如图:
官网给了两个例子,且每个例子中的tree-props都是这么写的:
:tree-props="{children: 'children', hasChildren: 'hasChildren'}"
给我一种错觉,以为数据结构中要同时指定children和hasChildren字段,然而,在非懒加载模式下,数据结构中只包含children数据即可,不能有hasChildren字段,否则只能加载出根节点,并且连根节点上的展开箭头都看不到。
仔细对比官网两个例子,可知
table1是非懒加载模式
数据中直接指定children,但是没有hasChildren字段(根据实践,可以有hasChildren字段,但是其值不能为true)ÿ