vue+iview利用render函数制作事件按钮
使用reder函数的on click属性来实现点击按钮触发事件的效果{title: “操作”,render: (h, params) => {let row = params.row;return h(“Button”,{style: {cursor: “pointer”,marginRight: “5px”,paddin: “5px 10px”},props: {...
·
使用reder函数的on click属性来实现点击按钮触发事件的效果
{
title: “操作”,
render: (h, params) => {
let row = params.row;
return h(
“Button”,
{
style: {
cursor: “pointer”,
marginRight: “5px”,
paddin: “5px 10px”
},
props: {
type: “primary”,
size: “small”
},
on: {
click: () => {
this.edit(params);
}
}
},
“删除词条数据”
);
}
}
可以参考vue官方文档(附上链接:https://vue.docschina.org/v2/guide/render-function.html#main)
更多推荐
已为社区贡献3条内容
所有评论(0)