Vue3 project construction

Vue3 project construction

Vue3 one hundred case catalog

Project build basic version

Open the command line tool (cmd or PowerShell) on the desktop (or D drive or a project folder), and enter the command:

npm init vue@latest

Command running screenshot:

create-vue-project

Then run:

cd admincat       # 进入项目目录
npm i             # 安装依赖
code .            # VSCode 打开
npm run dev       # 运行开发服务器

Open the browser: http://127.0.0.1:5173/

create-vue-project-preview

Creating the project is complete.

Project Files Directory Reference

There may not be so many newly created project folders, and some folders are given instructions for reference only.

vue-folder-struct

reference article

Guess you like

Origin blog.csdn.net/hongshuteng/article/details/128676705