render操作:
render:(h, params) => {
return h('div', [
h('Button',{
on:{
click:()=>{
this.edit(params)
}
}
}, '编辑'),
h('Span',{
style:{
'5px',
display:'inline-block'
}
}),
h('Button',{
props:{
disabled:params.row.id>10003
},
on:{
click:()=>{
this.delete(params)
}
}
},'删除')
])
}
])