一开始遇到的问题:
1. 单选按钮点某一个,它自己没被选中,它的上一个被选中了
2. 单选按钮的前面有数字,需要去掉
<!--单选框--> <el-table-column width="50px" align="center"> <template slot-scope="scope"> <el-radio :label="scope.$index" v-model="jobTableRadio" @change.native="getJobTableRow(scope.$index,scope.row)" style="margin-left: 10px;"> </el-radio> </template> </el-table-column>
methods里面添加:
getJobTableRow(index,row){ this.selectedJobTableRow = row; },
原文:https://www.cnblogs.com/MasterMonkInTemple/p/12657983.html