This is my Vue code:
<div id="root">
<input v-model="title" name="title" />
<div class="my-title">{title}</div>
</div>
I need to change the input value after a click on a button in jQuery (I can't change this part), something like:
$('.button').on('click', function() {
$("input[name='title']").val('some new value');
});
This works as expected, the input value showed in the browser is now some new value but the message in my-title div is not updated.
Any ideas about how to update it?