Skip to content

Commit

Permalink
fixup! add Checkbox components
Browse files Browse the repository at this point in the history
Signed-off-by: GretaD <gretadoci@gmail.com>
  • Loading branch information
GretaD committed Jun 15, 2020
1 parent 6e2deec commit e44d62d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/Checkbox/Checkbox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ export default {
* Emitted when the checkbox state is changed
* @type {boolean}
*/
this.$emit('update:checked', this.$refs.checkbox.checked)
this.$emit('update:value', this.$refs.checkbox.checked)
this.$emit('input', this.$refs.checkbox.checked)
/**
* Emitted when the checkbox state is changed
* @type {Event}
Expand Down

0 comments on commit e44d62d

Please sign in to comment.