Skip to content

Commit

Permalink
feat(v-modal): allow to modify modal class
Browse files Browse the repository at this point in the history
  • Loading branch information
gravitano committed Sep 27, 2021
1 parent 2d50333 commit 13a8472
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/components/VModal/VModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ interface Props {
headerClass?: string;
bodyClass?: string;
footerClass?: string;
modalClass?: string;
loading?: boolean;
}
Expand All @@ -35,6 +36,7 @@ const props = withDefaults(defineProps<Props>(), {
headerClass: '',
bodyClass: '',
footerClass: '',
modalClass: '',
boolean: false,
});
Expand Down Expand Up @@ -125,6 +127,7 @@ const onConfirm = () => {
shadow-xl
rounded-lg
"
:class="modalClass"
>
<DialogTitle
as="h3"
Expand Down

0 comments on commit 13a8472

Please sign in to comment.