While working on my Vue app, I encountered an issue with one of the dependencies throwing an error related to calling an undefined function:
vue-range-slider.cjs.js:150Uncaught ReferenceError: _h is not defined
I initially suspected that this could be caused by peer dependencies updating and causing conflicts, so I removed all the ^ characters from my package.json file.
Unfortunately, the problem still persists. What additional troubleshooting steps should I consider?