Home > OS >  how to downgrade vue version from 3 to 2
how to downgrade vue version from 3 to 2

Time:02-24

I am using Vue3 for studying but it cannot support Vuetify library. So I need to downgrade it to version 2. How can I do that? Vue3 is not installed in global. And vue-cli is installed in global, which is version 4.5.15.

CodePudding user response:

You can use

npm install <package>@<version>

However, if you have components you have to update their code also.

  • Related