<el-tree :data="data" show-checkbox default-expand-all ref="tree" node-key="id" :props="defaultProps"
:default-checked-keys="defaultSelect"
@node-click="handleNodeClick" >
let res = this.$refs.tree.getCheckedKeys().concat(this.$refs.tree.getHalfCheckedKeys()) console.log(res)
// 全选 getCheckedKeys()
// 半选 getHalfCheckedKeys()
返回结果为数组
赋值给defaultSelect
初始化默认高亮