'How to install vue.js version 2
I want to install version 2 of vue.js to use vuetify. However, I don't know the command for that. Could someone pass the command to me please
Solution 1:[1]
If you are looking for a specific version of Vue2 you can run the following command with npm: npm install [email protected] or if you want the latest, simply npm install vue.
For vue3 it is: npm install vue@next
Solution 2:[2]
?reated a new Vue.js project using Vue CLI. Select during installation Vue2
vue create my-app
# navigate to new project directory
cd my-app
Add vuetify
vue add vuetify
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Penny Liu |
| Solution 2 | Oleksii Zelenko |
