Cascader 选择任意一级选项 点options选项 自动关闭弹窗
let that = this;
await this.$nextTick();
document
.querySelectorAll(".el-cascader-panel .el-radio__input")
.forEach((el) => {
el.onclick = function() {
// 选中radio后,关闭下拉框
that.$refs.elcascader.togglePopperVisible(false);
};
});
获取选项框的Label:
this.$refs['diyuCascader'].getCheckedNodes()[0].pathLabels;