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

31 lines
683 B
JavaScript
Raw Normal View History

const CardSlots = [
{
2022-09-14 14:26:41 +00:00
name: 'header',
description: 'Custom content for the component header.'
},
{
2022-09-14 14:26:41 +00:00
name: 'title',
description: 'Custom content for the component title.'
},
{
2022-09-14 14:26:41 +00:00
name: 'subtitle',
description: 'Custom content for the component subtitle.'
},
{
2022-09-14 14:26:41 +00:00
name: 'content',
description: 'Custom content for the component content.'
},
{
2022-09-14 14:26:41 +00:00
name: 'footer',
description: 'Custom content for the component footer.'
}
];
module.exports = {
card: {
2022-09-14 14:26:41 +00:00
name: 'Card',
description: 'Card is a flexible container component.',
slots: CardSlots
}
};