html表格内插⼊单选按钮,vue中elementtable单选,添加单选框vue项⽬中,element table需要单选,但是组件⾃带的单选选中样式为⾼亮,不如单选框明显,想要改为单选框
实现如下:
handleRadioChange(e, w)">
export default {
data() {
return {
tableData: [
{ id: 1, date: '2016-05-02', name: '王⼩虎', address: '上海市普陀区⾦沙江路 1518 弄'},
{ id: 2, date: '2016-05-02', name: '王⼩虎', address: '上海市普陀区⾦沙江路 1518 弄'},
{ id: 3, date: '2016-05-02', name: '王⼩虎', address: '上海市普陀区⾦沙江路 1518 弄'},
],
radioSelect: null,
}
},
methods: {
handleRadioChange(e, row) {
e.stopPropagation();
this.currentRow = Object.assign({}, row);
console.log(this.currentRow)
},
}
htmlradio设置默认的按钮
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。