The problem that the element-plus cascading selector cannot be selected by clicking on the text

Official: https://element-plus.gitee.io/#/zh-CN

Problem: When I click on the text, I can’t select
insert image description here
it. Solution: I can click on the text by inserting css

.el-cascader-panel .el-radio {
    
    
  width: 100%;
  height: 100%;
  z-index: 10;
  position: absolute;
  top: 10px;
  right: -10px;
}

/* 隐藏单选按钮*/
// .el-cascader-panel .el-radio__input {
    
    
//   visibility: hidden;
// }

/* 这个样式针对IE有用*/
.el-cascader-panel .el-cascader-node__postfix {
    
    
  top: 10px;
}

Guess you like

Origin blog.csdn.net/weixin_46319117/article/details/120448559