[Vuejs]-How to pass "this" as well as v-model from input to handler

1👍

You can pass the event with the parameters as follows setPriceRange($event, minPriceInput, maxPriceInput); and use it through event.target.
Another thing you can do is giving it an id and calling it normally using document.getElementById("minPrice")

Leave a comment