Popconfirm

A simple and compact confirmation dialog of an action.

When To Use

A simple and compact dialog used for asking for user confirmation.

The difference with the ‘confirm’ modal dialog is that it’s more lightweight than the static popped full-screen confirm modal.

Examples


Delete

Basic

The basic example.


Delete

Locale text

Set okText and cancelText props to customise the button's labels.


Placement

There are 12 placement options available. Use arrowPointAtCenter if you want arrow point at the center of target.


Delete a task

Whether directly execute:

Conditional trigger

Make it pop up under some conditions.


API

Param Description Type Default value
cancelText text of the Cancel button string|slot Cancel
okText text of the Confirm button string|slot Confirm
okType Button type of the Confirm button string primary
title title of the confirmation box string|slot -

events

Events Name Description Arguments
cancel callback of cancel function(e)
confirm callback of confirmation function(e)
visibleChange Callback executed when visibility of the tooltip card is changed function(visible)

Consult Tooltip's documentation to find more APIs.

Note

Please ensure that the child node of Popconfirm accepts mouseenter, mouseleave, focus, click events.