Add submit handler that prevents normal submission if readyToSubmit
flag is not set
This commit is contained in:
parent
b6b03e73bc
commit
e8dcddfa65
@ -85,6 +85,13 @@ export default {
|
|||||||
return names.every((n, index) => names.indexOf(n) === index)
|
return names.every((n, index) => names.indexOf(n) === index)
|
||||||
},
|
},
|
||||||
|
|
||||||
|
handleSubmit: function (modalName, event) {
|
||||||
|
if (!this.readyToSubmit) {
|
||||||
|
event.preventDefault()
|
||||||
|
this.validateAndOpenModal(modalName)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
validateAndOpenModal: function (modalName) {
|
validateAndOpenModal: function (modalName) {
|
||||||
let isValid = this.$children.reduce((previous, newVal) => {
|
let isValid = this.$children.reduce((previous, newVal) => {
|
||||||
// display textInput error if it is not valid
|
// display textInput error if it is not valid
|
||||||
|
Loading…
x
Reference in New Issue
Block a user