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
methods: {getPatientProfile(e){console.log("function got called ");},
but it is not working..
The text was updated successfully, but these errors were encountered:
sanfx
changed the title
Cannot detect keypress event or hit enter event to call another function in vue js
Cannot detect keyup event or hit enter event to call another function in vue js
Dec 28, 2018
In my case a @keyup listener to the textbox is useful when we use ajax as data source.
When the user type something, we need to get the text to send into the API, then updating the list.
Without the listener, I need to touch the internals of this component, refering the textbox using id or ref.
I want to call a function
getPatientProfile
when user selects and hit enterbut it is not working..
The text was updated successfully, but these errors were encountered: