1234567891011 |
- <template>
- <el-popconfirm 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>
|