Allow footer component and position props in dialogs (#3090)

This commit is contained in:
Christian Byrne
2025-03-17 07:37:19 -07:00
committed by GitHub
parent a7a8cc633b
commit 652ea15e8b
2 changed files with 23 additions and 0 deletions

View File

@@ -25,6 +25,10 @@
v-bind="item.contentProps"
:maximized="item.dialogComponentProps.maximized"
/>
<template #footer v-if="item.footerComponent">
<component :is="item.footerComponent" />
</template>
</Dialog>
</template>