Create SubmitConfirmation modal

- includes html component and js component
- styling on modal is not ready
This commit is contained in:
Montana
2019-06-07 13:13:20 -04:00
parent 62c794e7b8
commit f49b67d0dd
6 changed files with 96 additions and 6 deletions

View File

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