vue --version tells you the CLI version. 3.11.0 is indeed vue cli 3.
– Ohgodwhy
This is for global vue cli version. How can I know which version is being used in my project??
– Ritik Patni
@RitikPatni, go the folder of your project with the terminal and run the same commands.
– tadvas
@tadvas Yes that's what I tried and it shows @vue/cli 4.0.5 even though the project is built on vue/cli 2
– Ritik Patni
1 Answers
33
votes
version of vue cli
vue --version
version of vue
npm list vue
We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.OkRead more
vue --version
tells you the CLI version.3.11.0
is indeed vue cli 3. – Ohgodwhy