Vue Element-UI 中el-table实现单选

el-table中单选的实现

  • 实现方式: 给el-table-column设置el-radio
     
export default {
  data() {
    return {
    }
  },
  methods: {
    // 方法一:与el-table @current-change方法 绑定
    handleCurrent (val) {
      if (val) {
        this.unitInfo.userId = val.userId
        this.unitInfo.man = val.username
      }
    },
    // 方法二:与el-radio @change方法 绑定
    handleRowChange (data) {
      if (data) {
        this.unitInfo.userId = data.userId
        this.unitInfo.man = data.username
      }
    }
  }
}

关注微信公众号【码农园区】私信拿完整源码

你可能感兴趣的:(Vue,vue.js,前端,elementui)