Merge pull request #790 from dod-ccpo/dod-notice

Add DoD Disclaimer
This commit is contained in:
George Drummond
2019-05-01 11:40:19 -04:00
committed by GitHub
9 changed files with 84 additions and 5 deletions

15
js/components/dodlogin.js Normal file
View File

@@ -0,0 +1,15 @@
export default {
name: 'dodlogin',
data: function() {
return {
visible: false,
}
},
methods: {
displayNotice: function() {
this.visible = true
},
},
}