I am using Vue-Slider-Component(V 3.0.31) in my application and it used to work perfectly fine. Later when I ran npm install for some other purpose, the slider stopped showing up in the browser and I can not even see that in DOM. Basically it is not rendering. I figured out the version of vue-slider-component got updated to 3.0.33 and then I tried to reinstall it again. I see something weird is happening. Few times when I try to install vue-slider-component, the default version comes up in package.json is
"vue-slider-component": "^3.0.31"
and the slider works perfectly fine. However, sometimes upon reinstalling, the default version comes up as-
"vue-slider-component": "^3.0.33"
and with this the slider component does not show up. My code to include slider is in place. I am only trying to figure out why is this happening.I am saving this dependency as a dev dependency in my package.json.
I have removed ^ (to make sure the version doesn't get updated) and when I try to manually install version 3.0.31, it still does not show up.I see the version is same in my package.json and package-lock.json.
I have even tried deleting node-modules and reinstalled but it does not seem to be working.
Can someone help me understand what is exactly happening here and why I am seeing this issue.