46 lines
926 B
Markdown
46 lines
926 B
Markdown
# Teek Design Vue3
|
|
|
|
Teek 是一个基于 [Vue3](https://github.com/vuejs/core)、[TypeScript](https://www.typescriptlang.org/)、[Vite](https://github.com/vitejs/vite)、[ElementPlus](https://element-plus.org/zh-CN) 构建的颜值强大、功能丰富、开箱即用的中后台管理系统解决方案。
|
|
|
|
这是精简版,只包含项目最基础的框架。完整版请看 [Teek Design Vue3](https://github.com/Kele-Bingtang/teek-design-vue3)。
|
|
|
|
## 使用文档
|
|
|
|
[使用文档](https://vue3-design-docs.teek.top/)
|
|
|
|
## 效果在线预览
|
|
|
|
[Teek Design Vue3](https://vue3-design.teek.top/)
|
|
|
|
## 本地开发
|
|
|
|
安装依赖
|
|
|
|
```sh
|
|
pnpm install
|
|
```
|
|
|
|
编译运行
|
|
|
|
```sh
|
|
pnpm dev
|
|
```
|
|
|
|
项目启动后自动打开浏览器,地址为:`http://localhost:8099/`。
|
|
|
|
## 项目打包
|
|
|
|
打包运行(测试环境使用)
|
|
|
|
```sh
|
|
pnpm build:test
|
|
```
|
|
|
|
打包运行(生产环境使用)
|
|
|
|
```sh
|
|
pnpm build
|
|
# or
|
|
pnpm build:prod
|
|
```
|