Element-UI Table 表格指定列添加点击事件
element
A Vue.js 2.0 UI Toolkit for Web
项目地址:https://gitcode.com/gh_mirrors/eleme/element
免费下载资源
·
如下图所示,这是一个ele UI库中的table,一般情况下我们只能通过tableDATA来向里面填充数据来展示,而无法对其中添加点击时间等操作。这里就来记录学习一下。
这是我们的一般使用方法,只能将数据进行展示。我们需要在el-table-column标签里面来进行处理
<el-table :data="tableData" style="width: 100%;height: 450px;"
:row-class-name="tableRowClassName">
:row-class-name="tableRowClassName">
<el-table-column
prop="title"
label=""
width="500">
</el-table-column>
<el-table-column
prop="author"
label=""
width="100">
</el-table-column>
</el-table>
我们在标签里面加上我们自定义的标签,可以通过{{scope.row.title}}的方法来获取数据,并来修改展示的效果。如下面所示。
<el-table :data="tableData" style="width: 100%;height: 450px;"
:row-class-name="tableRowClassName">
:row-class-name="tableRowClassName">
<el-table-column
prop="title"
label=""
width="500">
<template slot-scope="scope">
<a @click="detail(scope.row.id)" style="color:black;cursor:pointer;font-size: 16px;">{{
scope.row.title
}}</a>
</template>
</el-table-column>
<el-table-column
prop="author"
label=""
width="100">
</el-table-column>
</el-table>
GitHub 加速计划 / eleme / element
54.06 K
14.63 K
下载
A Vue.js 2.0 UI Toolkit for Web
最近提交(Master分支:3 个月前 )
c345bb45
7 个月前
a07f3a59
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update table.md
* Update transition.md
* Update popover.md 7 个月前
更多推荐
已为社区贡献1条内容
所有评论(0)