The first vue-cli program

First enter the workspace folder and run the initialization command

vue init wabpack demo //demo是项目名

Then set the project information (project name, author...)
and run in sequence after successful installation

cd demo
npm install
npm run dev

The program is already running

Guess you like

Origin blog.csdn.net/sinat_33940108/article/details/113104889