allow to add custom form completed message

This commit is contained in:
Pete Matsyburka
2024-04-05 16:16:30 +03:00
parent f16405ca70
commit 753cbd4d27
9 changed files with 65 additions and 8 deletions
+6
View File
@@ -418,6 +418,7 @@
:is-demo="isDemo"
:attribution="attribution"
:completed-button="completedRedirectUrl ? {} : completedButton"
:completed-message="completedRedirectUrl ? {} : completedMessage"
:with-send-copy-button="withSendCopyButton && !completedRedirectUrl"
:with-download-button="withDownloadButton && !completedRedirectUrl"
:with-confetti="withConfetti"
@@ -641,6 +642,11 @@ export default {
type: Object,
required: false,
default: () => ({})
},
completedMessage: {
type: Object,
required: false,
default: () => ({})
}
},
data () {