Categories: ElementPlus 教程

ElementPlus Popconfirm 气泡确认框

Popconfirm 气泡确认框

点击元素,弹出气泡确认框。

基础用法

Popconfirm 的属性与 Popover 很类似,因此对于重复属性,请参考 Popover 的文档,在此文档中不做详尽解释。

在 Popconfirm 中,只有 title 属性可用,content 属性不会被展示。

<template>
  <el-popconfirm title="这是一段内容确定删除吗?">
    <template #reference>
      <el-button>删除</el-button>
    </template>
  </el-popconfirm>
</template>

自定义

可以在 Popconfirm 中自定义内容。

<template>
  <el-popconfirm
    confirmButtonText="好的"
    cancelButtonText="不用了"
    icon="el-icon-info"
    iconColor="red"
    title="这是一段内容确定删除吗?"
  >
    <template #reference>
      <el-button>删除</el-button>
    </template>
  </el-popconfirm>
</template>

触发事件

点击按钮触发事件

<template>
  <el-popconfirm
    confirmButtonText="确定"
    cancelButtonText="取消"
    icon="el-icon-info"
    iconColor="red"
    title="这是一段内容确定删除吗?"
    @confirm="confirmEvent"
    @cancel="cancelEvent"
  >
    <template #reference>
      <el-button>删除</el-button>
    </template>
  </el-popconfirm>
</template>

<script>
  export default {
    methods: {
      confirmEvent() {
        console.log(confirm!)
      },
      cancelEvent() {
        console.log(cancel!)
      },
    },
  }
</script>

Attributes

参数 说明 类型 可选值 默认值
title 标题 String
confirmButtonText 确认按钮文字 String
cancelButtonText 取消按钮文字 String
confirmButtonType 确认按钮类型 String Primary
cancelButtonType 取消按钮类型 String Text
icon Icon String el-icon-question
iconColor Icon 颜色 String #f90
hideIcon 是否隐藏 Icon Boolean false

Slot

参数 说明
reference 触发 Popconfirm 显示的 HTML 元素

Events

事件名称 说明 回调参数
confirm 点击确认按钮时触发
cancel 点击取消按钮时触发

terry

这个人很懒,什么都没有留下~

Share
Published by
terry

Recent Posts

vue:页面注入js修改input值

一般会直接这样写: let z…

3 小时 ago

聊聊vue3中的defineProps

在Vue 3中,defineP…

1 周 ago

在 Chrome 中删除、允许和管理 Cookie

您可以选择删除现有 Cooki…

2 周 ago

自定义指令:聊聊vue中的自定义指令应用法则

今天我们来聊聊vue中的自定义…

3 周 ago

聊聊Vue中@click.stop和@click.prevent

一起来学下聊聊Vue中@cli…

4 周 ago

Nginx 基本操作:启动、停止、重启命令。

我们来学习Nginx基础操作:…

1 月 ago