Reputation: 1340
I installed vuetify using the command vue add vuetify
, but an error as below occurred because I didn't create the project using vue create <project>
, instead, I used vue init <template> <project>
.
Then, my project cannot run anymore. When I issued
npm start
, tons of errors occurred. The screenshot below is one of them:
Could someone teach me how to recover from these errors? Can I remove this plugin?
Or did it just destroy my project and I have to create a new one and start from scratch again?
Thanks
Upvotes: 5
Views: 15726
Reputation: 833
You can try
npm uninstall vue-cli-plugin-vuetify
removes veutify as a dependency
Cross verify in `package.json' file
Upvotes: 3