Vue3 common operations

Package manager using npm

1. Vue3 project construction

1. Install the latest version of vue

npm create vue@latest

2. Select the required configuration 

3. Enter the project

cd 项目名称

4. Download dependencies

npm install

5. Start the project

npm run dev

2. Commonly used framework construction

1. Quickly install sass

npm install -D sass

2. Quickly install elementPlus

npm install element-plus --save

Guess you like

Origin blog.csdn.net/qq_51478745/article/details/134564849