Fix Vue Range Slider Bug - Blocking All Input 

Today, when working on vue based app,  i found a weird bug, all of input in a page suddenly get blocked, you cannot type into text/number/textare field, all input field. 

After checking previous commit, wasting 1-2 hours 🤪, finally found the source of the problem. 

If you're using this library https://github.com/xwpongithub/vue-range-slider
That was the culprit.

Remove installed package from npm

"vue-range-component": "^1.0.3",

and the package directly from github

"vue-range-component": "xwpongithub/vue-range-slider",
The blocking fix for the library itself already merged in repository, but the owner seems not updated their package on npm. So we need to install the package directly from github.

That's all. 

Comments