vue2-datetimepicker
Version:
Shows a calendar to pick a date using moment.js
28 lines • 683 B
JavaScript
export default {
methods: {
emitChange(value) {
// https://forum.vuejs.org/t/custom-checkbox-component/1120/8
this.$emit('change', value)
this.$emit('input', value)
},
emitInput(value) {
this.$emit('change', value)
this.$emit('input', value)
},
emitInvalid() {
this.$emit('invalid')
},
emitReset() {
this.$emit('reset')
},
emitSearch() {
this.$emit('search')
},
emitSelect() {
this.$emit('select')
},
emitSubmit() {
this.$emit('submit')
},
}
}