liub1934/lb-element-table

onclick事件没有调用,请问是this指针不对吗

ccimage opened this issue · 2 comments

变量名已经用xxx代替, 点击Link, xxxClick没有调用

render: (h, scope) => {
const buttonList = [];
scope.row.xxx.forEach(element => {
buttonList.push(h("el-link", {
attrs: {type: "primary", href: "javascript:"},
on: {click: this.xxxClick}}, element));
buttonList.push(h("span", {attrs: {}}, " "));
});
return buttonList;
}

似乎是事件绑定不上去

居然是el-link的问题,换了el-button就好了。 才发现link没有click事件 🙄