Scaffolding--basic project environment construction

what is scaffolding

Scaffolding in vue uses the technology of vue-cli;
scaffolding is a basic empty framework for a project written in the future. This empty framework contains empty frames that have nothing to do with the project business

Create scaffolding:

Pre-preparation : There must be a node on the computer, and Taobao image must be installed on the suggested page;
**1. Global installation: **npm install -g @vue/cli
**2. Check the scaffolding version after installation: **vue --version
3. Put cmd cd to the path where you want to create the project, or go to cmd under the folder directory you want to create
4. Create a project vue create project name
6. Start the project npm run serve

Guess you like

Origin blog.csdn.net/wen15191038073/article/details/120551203