<el-table :data="noticeData" style="width: 100%" :show-header="false">
      <el-table-column prop="title" label="名称">
        <template slot-scope="scope">
          <div @click="viewDetail(scope.row)" style="cursor: pointer;">
            {{scope.row.title}}
          </div>
        </template>
      </el-table-column>
      <el-table-column prop="createTime" label="日期" width="120">
      </el-table-column>
    </el-table>

在el-table-column标签中加上template,在template中可以获取到想要传的数据,所以在template中触发点击事件就可以了

Logo

前往低代码交流专区

更多推荐