ElementUI
- 直接在
el-button
上配置属性slot
;
html
<el-popconfirm title="确定删除吗?请谨慎操作!" @confirm="delete">
<el-button slot="reference" size="small" type="danger">删除</el-button>
</el-popconfirm>
elementPlus
- 内嵌
<template #reference>
实现插槽机制;
html
<el-popconfirm title="确定删除吗?请谨慎操作!" @confirm="delete">
<template #reference>
<el-button slot="reference" size="small" type="danger">删除</el-button>
</template>
</el-popconfirm>
效果