标签:分享图片 ace com tab 组件 table sage error ror
render: (h, params) => {
return h(‘div‘, [
h(‘Button‘, {
props: {type: ‘error‘, size: ‘small‘},
},[
h(‘Poptip‘, {
props: {
confirm: true,
transfer: true,
placement: ‘left-end‘,
title: ‘确定要删除吗!‘,
type: ‘error‘,
size: ‘small‘,
width: ‘300‘,
},
on: {
‘on-ok‘: ()=>{
this.$Message.info(‘点击了确定‘)
},
‘on-cancel‘: function(){
this.$Message.info(‘点击了取消‘)
}
}
}, ‘删除‘)
]),
]);
}
效果
iview 在Table组件render 中使用Poptip组件 阿星小栈
标签:分享图片 ace com tab 组件 table sage error ror
原文地址:https://www.cnblogs.com/dereckbu/p/8954519.html