add builder on upload callback

pull/150/merge
Pete Matsyburka 2 years ago
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) {

Loading…
Cancel
Save