美文网首页
vue+element-ui中的el-table事件绑定@sel

vue+element-ui中的el-table事件绑定@sel

作者: 前端阿峰 | 来源:发表于2020-07-24 16:29 被阅读0次

废话少说,直接上代码

<template>
      <el-table
            ref="tableData"
            :data="tableData"
            stripe
            tooltip-effect="dark"
            :header-cell-style="{background:'#eef1f6',color:'#606266'}"
            border
            @selection-change="(selections)=>{handSelectionRules(selections,'参数')}"
          >
      <el-table-column type="selection" width="50"></el-table-column>
    </el-table>
</template>
methods:{
    handSelectionRules(selections,param){
        console.log(selections,param)   //[],参数
     }

}

相关文章

网友评论

      本文标题:vue+element-ui中的el-table事件绑定@sel

      本文链接:https://www.haomeiwen.com/subject/fvtslktx.html