mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 08:52:34 +00:00
24 lines
619 B
JavaScript
24 lines
619 B
JavaScript
const ConfirmPopupProps = [
|
|
{
|
|
name: 'group',
|
|
type: 'string',
|
|
default: 'null',
|
|
description: 'Optional key to match the key of the confirmation, useful to target a specific confirm dialog instance.'
|
|
}
|
|
];
|
|
|
|
const ConfirmPopupSlots = [
|
|
{
|
|
name: 'message',
|
|
description: 'Custom content for the component.'
|
|
}
|
|
];
|
|
|
|
module.exports = {
|
|
confirmpopup: {
|
|
name: 'ConfirmPopup',
|
|
description: 'ConfirmPopup displays a confirmation overlay displayed relatively to its target.',
|
|
props: ConfirmPopupProps,
|
|
slots: ConfirmPopupSlots
|
|
}
|
|
};
|