I have a vue component as
var app_3 = new Vue({
el:'#app-3',
data() {
return {
step:1,
models:''
}
}
});
And I am handling a click event using jquery like
$('body').on('click', '.models', function() {
});
I would like to access the vue data models from the jquery event handler. How can I access it?
mountedlifecycle hookv-on:clickdirective to his.modelselement?