When I remove some extra files in my project i found an error. It create a much of errors in my project
Following picture is showing as
I did't have any idea to solve it help me to solve the issue.
CodePudding user response:
You removed the file "CustomerList.vue" but you are importing it from another place. Just remove the import.
CodePudding user response:
Delete node-modules folder.
run command
npm cache clean --force
.run command
npm install
.Finally install the package again with
npm install your-package-name
.