Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Check version of vuetify

I have not found anything about that. Regarding the very quick modifications from version to version: How to check which version of vuetify is installed?

like image 753
daisyDuck Avatar asked Oct 08 '18 05:10

daisyDuck


People also ask

What is the latest version of Vuetify?

Vuetify 2.0 The latest version of Vuetify, based on the Material Design 2 specification.

How do I change my Vuetify version?

Just try the command npm install vuetify --save . It will update with latest one.

How do I add Vuetify to my Vue 2?

On the left side of your screen, click on Plugins. Once there, search for Vuetify in the input field and install the plugin.


1 Answers

To check which version of vuetify is installed use npm's ls command.

For example:

  • To check which version is installed globally:

    Run the following command:

    npm ls -g --depth 0 vuetify
    
  • To check which version is installed locally within your project:

    Firstly, cd to the project directory and then run:

    npm ls --depth 0 vuetify
    

Notes:

You can also omit the --depth 0 part to get the versions of all instances, i.e. show all versions of vuetify including those which may be a dependency of another package.

You'll see something like the following logged to your console. The part after the @ symbol indicates the version number:

└── [email protected]

If vuetify is not installed you'll see the following:

└── (empty)

like image 110
RobC Avatar answered Sep 20 '22 16:09

RobC