Human
Human

Reputation: 111

How to downgrade Vue CLI 3.12.0 to 3.0.1

Need to work with Vue CLI 3.0.1, vue -version says tha my current versin is 3.12.0.

Upvotes: 0

Views: 11383

Answers (1)

Simon Thiel
Simon Thiel

Reputation: 3285

You simply need to specific the version you want to install

npm install -g @vue/[email protected] 

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

Upvotes: 5

Related Questions