阅读背景:

Vue+Element表格嵌入复选框=》模拟单选框_The limits of your knowledge are the limits of your world

来源:互联网 

复选框模拟单选框:

Vue代码:可直接复制(去掉注释即可运行)

<template>
    <div>
      <p>shopInfo</p>
      <el-table
        ref="multipleTable"
        :data="tableData3"
        tooltip-effect="dark"
        highlight-current-row // element-UI提供的单选方法,可以使当前选中行高亮
        style="width: 100%"
        @current-change="handleSelectionChange"> // 单选方法,返回选中的表格行
        <el-table-column
          label="操作"
          width="55">
          <template slot-scope="scope">
            <el-checkbox v-model="scope.row.checked"></el-checkbox> // 添加一个多选框,控制选中与否
          </template>
        </el-table-column>
        <el-table-column
          label="日期"
          width="120">
          <template slot-scope="scope">{
   <



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: