45 lines
573 B
Markdown
45 lines
573 B
Markdown
# vue3-template
|
||
|
||
基于vite的vue3 项目基础模板
|
||
|
||
vue3:3.3.11
|
||
|
||
vue-router:4.2.5
|
||
|
||
pinia:2.1.7
|
||
|
||
element-plus:2.4.4
|
||
|
||
store持久化存储:pinia-plugin-persistedstate 3.2.1
|
||
https://prazdevs.github.io/pinia-plugin-persistedstate/guide/config.html
|
||
|
||
mitt:3.0.1
|
||
|
||
## Customize configuration
|
||
|
||
vite配置 [Vite Configuration Reference](https://vitejs.dev/config/).
|
||
|
||
## 项目初始化
|
||
|
||
```sh
|
||
npm install
|
||
```
|
||
|
||
### 运行dev服务
|
||
|
||
```sh
|
||
npm run dev
|
||
```
|
||
|
||
### 构建项目
|
||
|
||
```sh
|
||
npm run build
|
||
```
|
||
|
||
### eslint检测 [ESLint](https://eslint.org/)
|
||
|
||
```sh
|
||
npm run lint
|
||
```
|