我是靠谱客的博主 文艺嚓茶,这篇文章主要介绍element下拉按钮事件,现在分享给大家,希望可以做个参考。

element实现下拉菜单出来按钮 且每个按钮都有其相对应的事件,废话不多说、上代码

1、HTML 部分


<el-table-column :label="操作" align="center" class-name="small-padding ">
<template slot-scope="{row}">
<el-dropdown @command="handleCommand(row,$event)">
<span class="el-dropdown-link">其他操作<i class="el-icon-arrow-down el-icon--right" /></span>
<el-dropdown-menu slot="dropdown">
<el-dropdown-item command="handleUpdate">编辑</el-dropdown-item>
<el-dropdown-item v-if="row.status==-1" command="handleEnabled">启用</el-dropdown-item>
<el-dropdown-item v-if="row.status==1" command="handleDisabled">禁用</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
</template>
</el-table-column>

2、Script 部分


//事件方法
handleCommand(row, command) {
switch (command) {
case "handleUpdate":
this.handleUpdate(row);
break;
case "handleEnabled":
this.handleEnabled(row);
break;
case "handleDisabled":
this.handleDisabled(row);
break;
}
},
//按钮事件方法....此处省略
handleUpdate() {},
handleEnabled() {},
handleDisabled() {},

最后

以上就是文艺嚓茶最近收集整理的关于element下拉按钮事件的全部内容,更多相关element下拉按钮事件内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(44)

评论列表共有 0 条评论

立即
投稿
返回
顶部