TreeTree组件 设置Tree组件全部展开12345678910111213const authTreeRef = ref()// checkboxconst checkStrictly = ref(true)// 展开const expand = ref(false)watch(() => expand.value, () => { console.log(`output->expand.value`, expand.value) let nodes = authTreeRef.value.store.nodesMap; for (const node in nodes) { nodes[node].expanded = expand.value; // nodes[node].checked = expand.value; 设置全选 }})