render: function(h,params) {
return h("div", [
h("Button", {
props: {
type: "primary",
size: "small"
},
style: {
marginRight: "5px"
},
on: {
click: function() {
console.log(this);
this.show(params.index)
}
}
}, ""),
]);
}
methods: {
show: function(index) {
alert(index);
}
}