Merge pull request #880 from dod-ccpo/to-review-modal
TO Review Submit Modal
This commit is contained in:
21
js/components/submit_confirmation.js
Normal file
21
js/components/submit_confirmation.js
Normal 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
|
||||
},
|
||||
},
|
||||
}
|
Reference in New Issue
Block a user