html代码
<template slot-scope="scope">
<el-button
v-for="(item, index) in tableBtn"
:key="index"
size="mini"
:type="item.type"
@click="tabFun(item, scope.row)"
>{{ item.name }}</el-button >
</template>
2、js
//data
tableBtn: [{
type: "primary",
icon: "el-icon-document",
click: "handleReport",
name: "报告"
},
{
type: "success",
icon: "el-icon-picture-outline",
click: "handleImage",
name: "图像"
}, {
type: "primary",
icon: "el-icon-plus",
click: "handleAdd",
name: "新增"
},
{
type: "danger",
icon: "el-icon-delete",
click: "handleDelete",
name: "删除"
}],
//methods
tabFun(btn, row) {
if (this[btn.click]) {
this[btn.click](btn, row);
} else {
console.log("方法未定义!");
}
},
//报告事件
handleReport(index, row) {
console.log("handleReport");
},
//图像事件
handleImage(index, row) {
console.log("handleImage");
},
//新增事件
handleAdd(index, row) {
console.log("handleAdd");
},
//删除事件
handleDelete(index, row) {
console.log("handleDelete");
}
以上是编程学习网小编为您介绍的“el-button按钮实现v-for遍历”的全面内容,想了解更多关于 vuejs 内容,请继续关注编程基础学习网。
沃梦达教程
本文标题为:el-button按钮实现v-for遍历
基础教程推荐
猜你喜欢
- 利用HTML5分片上传超大文件工具 2023-10-28
- div css 实现tabs标签的思路及示例代码 2024-01-04
- 原生JS实现轮播效果+学前端的感受(防止走火入魔) 2024-04-26
- 小程序实现瀑布流动态加载列表 2022-08-30
- js实现背景图片感应鼠标变化的方法 2024-01-20
- CSS 中的 z-index 属性实例详解 2024-01-24
- 18. vue-router案例-tabBar导航 2023-10-08
- CSS 曲线阴影实现的示例代码 2024-04-01
- Angular实现表格自滚动效果 2024-04-03
- Vue el-table实现右键菜单功能 2024-01-20