how to add old version of vuetify

一世执手 提交于 2019-12-23 01:42:04

问题


I put "vue add vuetify@1.5" in my Linux console error, vuetify is currently in version 2.0.2 if I put "vue add vuetify" by default the latest version is added I want an earlier version.


回答1:


Go to your package.json and change line with "vuetify" to "vuetify": "1.5".

Then run npm install. Or yarn install, depending on what package manager you use.

Alternatively do npm install vuetify@1.5 --save (https://docs.npmjs.com/cli/install)

or yarn add vuetify@1.5 (https://yarnpkg.com/lang/en/docs/cli/add/)



来源:https://stackoverflow.com/questions/57255773/how-to-add-old-version-of-vuetify

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