Toggle ko dod id input if Invite KO is checked

This commit is contained in:
Montana
2019-01-18 09:56:59 -05:00
parent 67108484be
commit 74ee9113dc
3 changed files with 10 additions and 39 deletions

View File

@@ -1,31 +0,0 @@
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
}
}
}