Personal front-end Vue project configuration environment

Install VS code

Click to download VS code
personal commonly used plug-ins:
Atom One Dark Theme
Auto Rename Tag
Beautify
Chinese(simplified)
CSS Peek
cssrem
Easy LESS
language-stylus
open in browser
Vetur
Vue

Install GIT

Click to download GIT
Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description hereInsert picture description here
after the installation is complete, cmd enter git --version to view the version number

Install node.js

LTS long-term maintenance version (recommended to be more stable) Current current latest version
Click to download node
after installation is complete, open cmd and enter node -v to display the version number and the installation is complete.
Then enter npm -v to see if the package management tool is installed

Install Vue-cli scaffolding

npm install -g @vue/cli
vue init webpack my-project //创建基于webpack的工程文件
vue create my-project

Insert picture description hereAfter the installation is complete, enter npm run dev/start

Guess you like

Origin blog.csdn.net/weixin_43176019/article/details/108295461