Top
Fork me on Gitee

Vue -- element-ui 表头添加按钮

<el-table-column :render-header="renderHeader">
   <template slot-scope="scope">
      {{ scope.row.user }}
   </template>
</el-table-column>
methods: {
    renderHeader(h) {
      return(
         <el-button class="filter-item" type="default" icon="el-icon-delete" onClick={()=>this.handleAddItem()}>操作</el-button>
      )
    },
    handleAddItem() { }
}
posted @ 2020-06-28 15:37  lisashare  阅读(1801)  评论(0编辑  收藏  举报