Update Vuetify version

╄→гoц情女王★ 提交于 2019-11-30 09:15:43

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 -S vuetify@1.0.0-beta.6

Alternatively, if you prefer yarn

yarn add vuetify@1.0.0-beta.6

The -S flag used in the example above denotes --save in npm for dependencies.

yarn requires no flags to save them into dependencies.

Kent Dela Cruz Fueconcillo

to update vuetify version you must uninstall your old vuetify here is what i mean

uninstall it first

npm uninstall -S vuetify

then install it again

npm install -S vuetify

if you want to specify the version

npm install -S vuetify@1.0.0

for example.

-S or --save is for dependencies

Ziaur Rahman

In Mac or Ubuntu:

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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!