atst/js/components/submit_confirmation.js
Montana f49b67d0dd Create SubmitConfirmation modal
- includes html component and js component
- styling on modal is not ready
2019-06-11 09:31:03 -04:00

22 lines
290 B
JavaScript

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