mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 04:37:47 +08:00
19 lines
400 B
Vue
19 lines
400 B
Vue
<template>
|
|
<el-popconfirm
|
|
width="220"
|
|
confirm-button-text="OK"
|
|
cancel-button-text="No, Thanks"
|
|
:icon="InfoFilled"
|
|
icon-color="#626AEF"
|
|
title="Are you sure to delete this?"
|
|
>
|
|
<template #reference>
|
|
<el-button>Delete</el-button>
|
|
</template>
|
|
</el-popconfirm>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { InfoFilled } from '@element-plus/icons-vue'
|
|
</script>
|