atst/js/components/checkbox_input.js
2018-08-15 11:28:48 -04:00

18 lines
261 B
JavaScript

export default {
name: 'checkboxinput',
props: {
name: String,
},
methods: {
onInput: function (e) {
console.log(e)
this.$root.$emit('field-change', {
value: e.target.checked,
name: this.name
})
}
}
}