Move common to review html into a fragment and delete unused submit confirmation macro and vue component

This commit is contained in:
leigh-mil
2019-07-16 16:50:28 -04:00
parent 5b208d9e8d
commit 72da5f36c3
6 changed files with 90 additions and 256 deletions

View File

@@ -1,28 +0,0 @@
import checkboxinput from './checkbox_input'
export default {
name: 'submit-confirmation',
components: {
checkboxinput,
},
data: function() {
return {
valid: false,
checked: false,
}
},
methods: {
toggleValid: function() {
this.valid = !this.valid
},
handleClose: function() {
this.$root.closeModal(this.name)
this.checked = false
this.valid = false
},
},
}