ivew ui

render操作:

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

 

 

 

posted @ 2019-04-16 10:25  国服第一李师师  阅读(228)  评论(0编辑  收藏  举报