[Vuejs]-Vue-utils Get value of model after be event of keydown

0👍

input.trigger(‘keydown’) – its event for @keydown.
Input element use @input event for updating value . Probably .trigger(‘input’ , ‘a’) – that’s what you need

Leave a comment