You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be helpful if I could attach events on component and it would respond to them. Right now component emits only "input" event. I would like to attach "blur" and "keyup.enter" events like this: <vue-autonumeric @blur="blurHandeler" @keyup.enter="enterHandeler" />
Locally I'm using "vue-autonumeric": "^1.2.6", (i.e. the most recent version at the time of writing this commend) and @blur and @keyup.enter events aren't triggering.
Locally I'm using "vue-autonumeric": "^1.2.6", (i.e. the most recent version at the time of writing this commend) and @blur and @keyup.enter events aren't triggering.
Use native events: @keyup.enter.native. It's work for me.
It would be helpful if I could attach events on component and it would respond to them. Right now component emits only "input" event. I would like to attach "blur" and "keyup.enter" events like this:
<vue-autonumeric @blur="blurHandeler" @keyup.enter="enterHandeler" />
Vue js can do it with
this.$listeners
The text was updated successfully, but these errors were encountered: