nested-operation.vue 577 B

1234567891011121314151617181920
  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"
  7. >confirm</el-button
  8. >
  9. </div>
  10. <template #reference>
  11. <el-button @click="visible = true">Delete</el-button>
  12. </template>
  13. </el-popover>
  14. </template>
  15. <script lang="ts" setup>
  16. import { ref } from 'vue'
  17. const visible = ref(false)
  18. </script>