add builder on upload callback

This commit is contained in:
Pete Matsyburka
2023-12-19 19:27:07 +02:00
parent 203f4633f7
commit 441c1d7044
@@ -351,6 +351,13 @@ export default {
required: false,
default: true
},
onUpload: {
type: Function,
required: false,
default () {
return () => {}
}
},
withStickySubmitters: {
type: Boolean,
required: false,
@@ -732,6 +739,10 @@ export default {
this.scrollIntoDocument(schema[0])
})
if (this.onUpload) {
this.onUpload(this.template)
}
this.save()
},
updateName (value) {
@@ -765,6 +776,10 @@ export default {
})
})
if (this.onUpload) {
this.onUpload(this.template)
}
this.save()
},
moveDocument (item, direction) {