I have form like this
<form v-on:submit.prevent="save_data(this)"></form>
and function like this
methods: {
save_data: function(f){
}
}
on jquery we can get form like this
$(f)[0]
my question is, how to get that form using vue js? thanks for your answer