vue learning vue cli creation project

Install node.js

https://nodejs.org/en

Install vue cli

npm install -g @vue/cli --registry=https://registry.npm.taobao.org

Insert image description here

Create project

  • Execute the create command and press Enter
vue create vue-cli-learning
  • Select “Manually select features” and press Enter
    Insert image description here
  • "Space" to turn off the Linter/Formatter option and press Enter
    Insert image description here
  • Select 3.0 and press Enter
    Insert image description here
  • Press Enter all the way and the creation is completed
    Insert image description here

Run the project

cd vue-cli-learning
npm run serve

Insert image description here

Visit project

Insert image description here

Guess you like

Origin blog.csdn.net/qq_36940806/article/details/132920390