[Vuejs]-HRM module stop working on the same project on which it is working earlier

0👍

This usually is npm packages problem and is often remedied by reinstallation

  • first remove the node_modules directory in project root
  • also you can clear the npm cache npm cache clean --force(this is optional)
  • then reinstall packages npm i

Leave a comment