How can I trigger Vue event from jquery? I have
<input type='text' v-on='keypress: doSomthing()' id='demo'>
.
How can I trigger this event outside of vue .. using jquery? I thought I can do
$('#demo').trigger('keypress')`
... but it doesnt trigger the event. It does nothing. Any idea how to do it?