Front-end articles (section 3)-vue-element-plus-admin start

1. Install element-plus

1. element-plus official website address

https://element-plus.gitee.io/zh-CN/guide/installation.html
insert image description here

2. Use pnpm to install

insert image description here

Install command
pnpm install element-plus

insert image description here

2. Install vue scaffolding

npm install -g @vue/cli

3. Install vue-router

npm install vue-router --save

4. Install axios

npm install axios

5. Download the vue-element-plus-admin project

https://gitee.com/kailong110120130/vue-element-plus-admin?_from=gitee_search
insert image description here

6. Install and start the project

The following are all commands entered in cmd

  1. install dependencies

Switch to the path of the project
cd vue-element-plus-admin
install
pnpm install

  1. Run the development environment

pnpm run dev

  1. Package production environment

pnpm run build:pro

7. Knowledge required for the vue-element-plus-admin project

insert image description here

Guess you like

Origin blog.csdn.net/qq407995680/article/details/131596791