Search code examples
vue.jsvuetify.jsdowngrade

How to downgrade Vue version from 3 to 2?


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.


Solution

  • You can use

    npm install <package>@<version>
    

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