Merge pull request #546 from dod-ccpo/am-cor-checkbox

am COR checkbox
This commit is contained in:
montana-mil
2019-01-17 11:39:06 -05:00
committed by GitHub
10 changed files with 149 additions and 20 deletions

View File

@@ -0,0 +1,31 @@
import FormMixin from '../../mixins/form'
import textinput from '../text_input'
import checkboxinput from '../checkbox_input'
export default {
name: 'cor',
mixins: [FormMixin],
components: {
textinput,
checkboxinput,
},
props: {
initialData: {
type: Object,
default: () => ({})
}
},
data: function () {
const {
am_cor = false
} = this.initialData
return {
am_cor
}
}
}

View File

@@ -11,6 +11,7 @@ import textinput from './components/text_input'
import checkboxinput from './components/checkbox_input'
import DetailsOfUse from './components/forms/details_of_use'
import poc from './components/forms/poc'
import cor from './components/forms/cor'
import financial from './components/forms/financial'
import toggler from './components/toggler'
import NewApplication from './components/forms/new_application'
@@ -44,6 +45,7 @@ const app = new Vue({
checkboxinput,
DetailsOfUse,
poc,
cor,
financial,
NewApplication,
selector,