Element

发布时间 2023-07-01 18:25:05作者: 冲锋的凉菜

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;