We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
clickable: false
In the example https://jsfiddle.net/6k3fo5dt/1/, click handlers on progress are disabled, but not those on the mark labels.
progress
mark
Is that by design? Is there a way to disable them? For my use case, the user should have to drag the dot.
The text was updated successfully, but these errors were encountered:
As a workaround, I noticed that customizing the label slot made it stop listening to clicks:
label
<template v-slot:label="{ label, active }"> <div :class="['vue-slider-mark-label', 'custom-label', { active }]">{{ label }}</div> </template>
Sorry, something went wrong.
Thanks for your feedback, fixed in version 3.0.45.
ok, I've updated it, removed the slot:label hack, and now the labels are not responding to click anymore. Thanks!
No branches or pull requests
In the example https://jsfiddle.net/6k3fo5dt/1/,
click handlers on
progress
are disabled, but not those on themark
labels.Is that by design? Is there a way to disable them?
For my use case, the user should have to drag the dot.
The text was updated successfully, but these errors were encountered: