mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 20:27:44 +08:00
f78407a409
* fix(components): empty icon component judgment * revert: globals components * fix(components): el-icon missing import * fix: use shallowRef for icon components * refactor: remove shallowRef * fix: remove unused code * fix: social-link icon size * fix: time picker icon * fix: v-if judge
18 lines
376 B
Vue
18 lines
376 B
Vue
<template>
|
|
<el-popconfirm
|
|
confirm-button-text="OK"
|
|
cancel-button-text="No, Thanks"
|
|
:icon="InfoFilled"
|
|
icon-color="red"
|
|
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'
|
|
</script>
|