官方文档只能在点击选择框的时候才能选中,在某些实际操作中需要点击lebel就选中,加上下面的代码就可以了

mounted() {setInterval(function () {document.querySelectorAll(".el-cascader-node__label").forEach(el => {el.onclick = function () {if (this.previousElementSibling) this.previousElementSibling.click();};});}, 1000);},