I have been using a vue-bootstrap slider that comes with two actions, @change and @update.
My goal is to capture the final position of the slider once the movement ends. To achieve this, I decided to test both actions.
In my scenario, @change triggers even while I am still moving the scroll before releasing the mouse, and @update does not work at all.
Is there a way to use an action that will only activate once I finish scrolling and release the mouse?
This is my code snippet:
<vue-slider style="position: absolute; margin-left: 1285px;"
v-model="value"
direction="ttb"
:height="800"
class="mr-1 vue-slider-warning"
:tooltip="'none'"
@change="scrollMeNew"
/>