add onSave builder event prop

This commit is contained in:
Pete Matsyburka
2024-01-10 17:54:35 +02:00
parent 298c64a119
commit b6f43c9b23
@@ -372,6 +372,13 @@ export default {
return () => {}
}
},
onSave: {
type: Function,
required: false,
default () {
return () => {}
}
},
withStickySubmitters: {
type: Boolean,
required: false,
@@ -967,6 +974,10 @@ export default {
}
}),
headers: { 'Content-Type': 'application/json' }
}).then(() => {
if (this.onSave) {
this.onSave(this.template)
}
})
}
}