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
},
},
}

View File

@@ -6,6 +6,7 @@ import classes from '../styles/atat.scss'
import Vue from 'vue/dist/vue'
import VTooltip from 'v-tooltip'
import dodlogin from './components/dodlogin'
import levelofwarrant from './components/levelofwarrant'
import optionsinput from './components/options_input'
import multicheckboxinput from './components/multi_checkbox_input'
@@ -47,6 +48,7 @@ Vue.mixin(Modal)
const app = new Vue({
el: '#app-root',
components: {
dodlogin,
toggler,
levelofwarrant,
optionsinput,