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]();
}
v-for循环绑定el-color-picker颜色选择器绑定value/v-model值
上面是“vue项目利用v-for批量绑定按钮”的全面内容,想了解更多关于 vuejs 内容,请继续关注web建站教程。
当前网址:https://ipkd.cn/webs_2941.html
workflows工作流
一只外星甲壳虫子ComfyUI工作流
一只开屏的白色孔雀ComfyUI工作流
一张由表情符号组成的照片ComfyUI工作流
一幅生动而古怪的时尚鸭子插图ComfyUI工作流
去掉背景(抠图)comfyui工作流
1个很漂亮的单身小女孩ComfyUI工作流
一条赤壁龙从蛋中孵化出来ComfyUI工作流
图生图工作流:藏族姑娘ComfyUI工作流
猜你喜欢
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!

css3搭积木叠加图形
jquery鼠标滑过图片边框特效(jquery.focus-follow插件)
iframe开发admin后台
一起去看流星雨(代码)
纯css3绘制的小鸟
用ascii字符画图像
jquery做一个漂亮挂墙动态时钟
js+css3做一个灯泡开灯关灯效果











