I'm trying to create a Vue project. First installed @vue/cli
with command:
PS D:\OpenServer\domains\vue3-example> npm install -g "@vue/cli"
Then tried to directly create a Vue project with the command:
PS D:\OpenServer\domains\vue3-example> vue create .
This resulted in the following result:
I don't want to reinstall Node because my version of Node is used in other projects. In this case, as I understand it, I need to install the appropriate @vue/cli
for Node v13.14.0. There were 3 questions:
@vue/cli
?@vue/cli
is suitable for Node v13.14.0?@vue/cli
version for Node v13.14.0?npm uninstall -g @vue/cli
to revert globally installing @vue/cli
.npm install -g @vue/cli@4
to install vue version 4.x