I came across a situation where I wanted to implement a Range Slider using a jQuery plugin.
This particular plugin operates by concealing the text input element and adjusting it as I slide and choose a value between two points, A and B.
My attempt to use v-on:change to track changes in this hidden input was unsuccessful. It seems to only work when I change the value manually, not while sliding.
Is there a way to make v-on:change function properly in this scenario?