atst/js/components/checkbox_input.js
2019-04-19 11:49:41 -04:00

19 lines
284 B
JavaScript

import { emitEvent } from '../lib/emitters'
export default {
name: 'checkboxinput',
props: {
name: String,
},
methods: {
onInput: function(e) {
emitEvent('field-change', this, {
value: e.target.checked,
name: this.name,
})
},
},
}