vue项目利用v-for批量绑定按钮

967 ℃

vue项目如何利用v-for批量绑定按钮,下面给大家简单介绍一下实现代码!

1、定义一个v-for循环

<el-button
 v-for="(item, index) in tableBtn"
 :type="item.type"
 :icon="item.icon"
 :key="index"
 @click="callBack(item.method)">
{ item.label }}
</el-button>

2、tableBtn数组

_table.tableBtn = [
  {
    type: "primary",
    icon: "el-icon-picture-outline",
    method: "openImage",
    label: "图像"
  },
  {
    type: "primary",
    icon: "el-icon-document",
    method: "openReport",
    label: "报告"
  },
  {
    type: "danger",
    icon: "el-icon-video-camera",
    method: "openVideo",
    label: "视频"
  }
];

3、methods按钮事件

openImage() {
  console.log("打开图像");
},
openReport() {
  console.log("打开报告";
},
openVideo() {
  console.log("打开视频");
},
callBack(method) {
  this[method]();
}

vue3面试题:v-if 和 v-for 的优先级哪个高?

vue如何利用v-for遍历二维数组

vue项目中v-if和v-for哪个级别更高

v-if和v-for哪个优先级更高

v-for循环绑定el-color-picker颜色选择器绑定value/v-model值

标签: el-button, v-for, 批量绑定按钮

上面是“vue项目利用v-for批量绑定按钮”的全面内容,想了解更多关于 vuejs 内容,请继续关注web建站教程。

当前网址:https://m.ipkd.cn/webs_2941.html

声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!

营销网站被k降级的常见原因有哪些?
jquery怎么获取上一级元素(改变样式)
js数组是NaN如何判断
html5语法中关于querySelector()基本用法
nginx优化:如何限制请求速率?