[Vuejs]-How to downgrade Vue CLI 3.12.0 to 3.0.1

5👍

You simply need to specific the version you want to install

npm install -g @vue/cli@3.0.1 

See also: https://docs.npmjs.com/cli/install

Leave a comment