Add in basic implementation of the KO TO signature page

This commit is contained in:
George Drummond
2019-02-05 15:48:27 -05:00
parent 3c7fe2cf24
commit 8689748d10
13 changed files with 373 additions and 10 deletions

View File

@@ -0,0 +1,29 @@
import Vue from 'vue'
import textinput from './text_input'
import checkboxinput from './checkbox_input'
import FormMixin from '../mixins/form'
export default Vue.component('levelofwarrant', {
mixins: [FormMixin],
components: {
textinput,
checkboxinput,
},
props: {
initialData: {
type: Object,
default: () => ({}),
},
},
data() {
const { unlimited_level_of_warrant = false } = this.initialData
return {
unlimited_level_of_warrant,
}
},
})