iview的table中点击Icon弹Poptip,render函数的写法

时间:2021-10-25 16:04:48
render: (h, params) => {
              return h('div', [
h('div', [
h('Poptip', {
props: {
confirm: true,
transfer: true,
placement: 'left-start',
title: '确定要删除吗!',
type: 'error',
size: 'small',
width: '300',
vModel: true
},
on: {
'on-ok': ()=>{
this.$Message.info('点击了确定')
},
'on-cancel': ()=>{
this.$Message.info('点击了取消')
}
}
}, [
h('Icon',{
props: {
type: 'ios-gear',
size:18
}
})
])
]),
]);
}