16 lines
399 B
JavaScript
16 lines
399 B
JavaScript
const DynamicDialogProps = [];
|
|
|
|
const DynamicDialogEvents = [];
|
|
|
|
const DynamicDialogSlots = [];
|
|
|
|
module.exports = {
|
|
dynamicdialog: {
|
|
name: 'DynamicDialog',
|
|
description: 'Dialogs can be created dynamically with any component as the content using a DialogService.',
|
|
props: DynamicDialogProps,
|
|
events: DynamicDialogEvents,
|
|
slots: DynamicDialogSlots
|
|
}
|
|
};
|