Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Implemented change event with param
  • Loading branch information
bycem committed Nov 7, 2018
commit f301f9490580dfd18e75eb1589c6ab8e0f8e3d4d
4 changes: 2 additions & 2 deletions src/vue-numeric.vue
Original file line number Diff line number Diff line change
Expand Up @@ -318,12 +318,12 @@ export default {
onInputHandler () {
this.process(this.amountNumber)
},

/**
* Emit change event
*/
onChangeHandler(event){
this.$emit("change",event);
this.$emit("change", this.amount , event);
},

/**
Expand Down