el-radio-group
<pre><code class="language-markdown">   <el-radio-group v-model="checkList" class="c-width100">
      <el-table :header-row-style="tableHeadStyle" max-height="260" :data="tableData" element-loading-text="加载中..." fit highlight-current-row :class="tableCss">
        <el-table-column align="left" label="表单名称">
          <template slot-scope="scope">
            <span class="c-fc-333" :title="scope.row.name">
              <el-radio :label="scope.row" class="c-flex-row">
                <div class="c-text-ellipsis1 line-block c-width100">
                  {{scope.row.name}}
                </div>
              </el-radio>
            </span>
        </template>
        </el-table-column>
        <el-table-column align="center" width="100" label="状态">
          <template slot-scope="scope">
            <span class="c-fc-333">
              {{scope.row|filterStatus}}
            </span>
          </template>
        </el-table-column>
      </el-table>
      </el-radio-group></code></pre>
<p><img src="https://www.showdoc.com.cn/server/api/attachment/visitfile/sign/bee24882f29eb841014153e621085bdc" alt="" /></p>