nested-operation.vue 603 B

123456789101112131415161718
  1. <template>
  2. <el-popover :visible="visible" placement="top" :width="160">
  3. <p>Are you sure to delete this?</p>
  4. <div style="text-align: right; margin: 0">
  5. <el-button size="small" text @click="visible = false">cancel</el-button>
  6. <el-button size="small" type="primary" @click="visible = false">confirm</el-button>
  7. </div>
  8. <template #reference>
  9. <el-button @click="visible = true">Delete</el-button>
  10. </template>
  11. </el-popover>
  12. </template>
  13. <script lang="ts" setup>
  14. import { ref } from 'vue'
  15. const visible = ref(false)
  16. </script>