mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 09:20:51 +08:00
14 lines
292 B
Vue
14 lines
292 B
Vue
|
<template>
|
||
|
<el-popconfirm
|
||
|
confirm-button-text="OK"
|
||
|
cancel-button-text="No, Thanks"
|
||
|
icon="el-icon-info"
|
||
|
icon-color="red"
|
||
|
title="Are you sure to delete this?"
|
||
|
>
|
||
|
<template #reference>
|
||
|
<el-button>Delete</el-button>
|
||
|
</template>
|
||
|
</el-popconfirm>
|
||
|
</template>
|