ivew ui

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)
}
}
},'删除')
])
}
])

原文地址:https://www.cnblogs.com/MDGE/p/10715360.html