欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vue中使用ElementUI组件中的el-table遇到的问题

程序员文章站 2022-07-01 18:08:15
...

1.当点击表格中的行时,获取当前行的数据,官方 文档 自带的row-click事件,参数有row
vue中使用ElementUI组件中的el-table遇到的问题
2.当@row-click=“rowPosition()” 就获取不到row中的数据

vue中使用ElementUI组件中的el-table遇到的问题
3.不能函数后带括号

   <el-table :data="advertiseList" :show-row-hover="false" @row-click="roWPosition">
            <el-table-column prop="title" label="职位名称"></el-table-column>
            <el-table-column prop="address" label="工作地点"></el-table-column>
            <el-table-column prop="num" label="招聘人数"></el-table-column>
            <el-table-column prop="updateTime" label="更新时间"></el-table-column>
            <el-table-column prop="email" label="简历投送"></el-table-column>
          </el-table>

4.vue中使用ElementUI组件中的el-table遇到的问题

相关标签: vue