customize.vue 379 B

1234567891011
  1. <template>
  2. <el-popconfirm confirm-button-text="OK" cancel-button-text="No, Thanks" :icon="InfoFilled" icon-color="#626AEF" title="Are you sure to delete this?">
  3. <template #reference>
  4. <el-button>Delete</el-button>
  5. </template>
  6. </el-popconfirm>
  7. </template>
  8. <script setup lang="ts">
  9. import { InfoFilled } from '@element-plus/icons-vue'
  10. </script>