VUE+ElementUI 实现表格单选

VUE+ElementUI 实现表格单选_第1张图片

 1.表格第一行使用radio,label绑定id

 
      
      
      

      
      
      
      
       

2.Return

 //当前选择的行的数据
   checkList: [],
 //显示为空
   none: "",

3.Methods

 // 表格单勾选
    singleElection(row) {
      this.templateSelection = row.TemplateID;
      this.checkList = this.transcodeData.filter(
        (item) => item.Name === row.Name
      );
    },

你可能感兴趣的:(vue.js,elementui,javascript)