vue-range-slider
vue-range-slider copied to clipboard
custom prop validator fails for :tooltip="false"
For anybody who is encountering the same problem:
I've installed this package via yarn and encountered the problem, that the custom validator for the tooltip doesn't check for false
.
Apparently this is fixed in a package vue-range-component-fixed
by the same author.
Don't really know what's going on, there is also a package named vue-range-component-fix
.
Anyway, this solved it for me:
yarn add vue-range-component-fixed
Just remember to re-reference the package when including it (including the css file), ie
import 'vue-range-component-fixed/dist/vue-range-slider.css';
import VueRangeSlider from 'vue-range-component-fixed';
@xwpongithub Can you add this info about installation via yarn to Readme? Cause I spent much time to do it(
Guys, thank you for decision!