Update Vuetify version

后端 未结 4 1934
悲哀的现实
悲哀的现实 2020-12-31 12:53

To update the Vuetify component library in my project, I changed the version in package.json and ran the command npm install. Vuetify is now remove

4条回答
  •  执念已碎
    2020-12-31 13:36

    Run npm info vuetify to lookup for the list of versions that they have.

    Install the specific version that you want with the following. I am using the latest vuetify v1.0.0-beta.6 as an example.

    Example:

    npm install --save vuetify@1.0.0-beta.6
    

    Alternatively, if you prefer yarn

    yarn add vuetify@1.0.0-beta.6
    

    You can replace --save with -S flag instead.

    yarn requires no flags to save them into dependencies.

提交回复
热议问题