[Vuejs]-Node dependency stopped working

0👍

The bug is that internally the render function was renamed from _h to _c and you are probably using a component with pre-built js files.

The solutions are

  • downgrading vue to prior 2.1.5 since this is where the bug was introduced (also downgrade vue-template-compiler to same version)
  • wait for vue-range-slider developers to fix it
  • fix it yourself and pull request

Where fixing means distributing the source instead of the pre-built files.

Here is where the error happened:
https://github.com/vuejs/vue/commit/4b51ad048306367a6fb6fbee7445e086d855f31e

Leave a comment