primevue-mirror/api-generator/components/card.js
Tuğçe Küçükoğlu 8681911998 Fixed #1138 Fixed #962
2021-05-12 12:35:29 +03:00

30 lines
683 B
JavaScript

const CardSlots = [
{
name: "header",
description: "Custom content for the component header."
},
{
name: "title",
description: "Custom content for the component title."
},
{
name: "subtitle",
description: "Custom content for the component subtitle."
},
{
name: "content",
description: "Custom content for the component content."
},
{
name: "footer",
description: "Custom content for the component footer."
}
];
module.exports = {
card: {
name: "Card",
description: "Card is a flexible container component.",
slots: CardSlots
}
};