問題
樹形子組件數(shù)據(jù)渲染不出來颇蜡,導(dǎo)致expand無法執(zhí)行
成功效果應(yīng)如下
解決
- 設(shè)置
hasChildren
為true
tableData: [{
// deptName: '全院',
hasChildren: true
}]
- 在
load
里面執(zhí)行children的更新
load(tree, treeNode, resolve) {
console.log('執(zhí)行l(wèi)oad', tree, treeNode, resolve)
setTimeout(() => {
resolve(
this.$set(this.tableData[0], 'children', tree.children)
)
}, 1000)
}