一、iview 在Table组件中使用Poptip组件
colKey: [
{
title: '产品图',
key: 'pic',
sortable: true,
render: function(h, param){
return h('div', [
h('Button', [
h('Poptip', {
props: {
confirm: true,
title: '确定要删除吗!',
type: 'error',
size: 'small'
},
on: {
'on-ok': ()=>{
this.$Message.info('点击了确定')
},
'on-cancel': ()=>{
this.$Message.info('点击了确定')
}
}
}, '删除')
])
]);
}
]
二、poptip中渲染ta