Refactor to use v-model

This commit is contained in:
Montana
2019-01-04 13:21:50 -05:00
parent 2743bddf0c
commit 53a6c73510
2 changed files with 7 additions and 7 deletions

View File

@@ -32,15 +32,14 @@ export default {
showValid: !showError && !!this.initialValue,
validationError: this.initialErrors.join(' '),
otherChecked: this.initialValue.includes("other") ? true : this.otherChecked,
otherText: this.initialOtherValue
otherText: this.initialOtherValue,
selections: []
}
},
mounted: function () {
for (let child of this.$el.firstChild.lastElementChild.children) {
if (this.initialValue.includes(child.firstChild.value)) {
child.firstChild.checked = true
}
for (let choice of this.initialValue) {
this.selections.push(choice)
}
},