primevue-mirror/api-generator/components/confirmpopup.js

25 lines
619 B
JavaScript
Raw Normal View History

2021-05-12 09:35:29 +00:00
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."
}
];
2021-05-12 09:35:29 +00:00
module.exports = {
confirmpopup: {
name: "ConfirmPopup",
description: "ConfirmPopup displays a confirmation overlay displayed relatively to its target.",
props: ConfirmPopupProps,
slots: ConfirmPopupSlots
2021-05-12 09:35:29 +00:00
}
};