Merge pull request #880 from dod-ccpo/to-review-modal

TO Review Submit Modal
This commit is contained in:
dandds
2019-06-11 13:10:17 -04:00
committed by GitHub
15 changed files with 187 additions and 28 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
},
},
}