Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/huisir001/fy-admin
Background rights management framework
https://github.com/huisir001/fy-admin
element-plus typescript vue3-typescript
Last synced: about 2 months ago
JSON representation
Background rights management framework
- Host: GitHub
- URL: https://github.com/huisir001/fy-admin
- Owner: huisir001
- Created: 2021-12-10T09:45:27.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-10-09T04:16:58.000Z (about 2 years ago)
- Last Synced: 2023-03-06T15:17:46.670Z (almost 2 years ago)
- Topics: element-plus, typescript, vue3-typescript
- Language: Vue
- Homepage:
- Size: 1.67 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FY-ADMIN 后台管理系统(风云ADMIN)
(vue3+TS+ElementUI后管脚手架)
> 状态:开发中,未完成
> by Huisir @2021
> Email [email protected]## 兼容性
- Edge ≥ 79
- Firefox ≥ 78
- Chrome ≥ 64
- Safari ≥ 12## 功能组件
* 权限管理
* 用户登录
* 接口验证
* 常用组件
* 代码生成## 开发
```bash
# 进入项目目录
cd vue3-ts-element-admin# 安装依赖
npm install# 建议不要直接使用 cnpm 安装依赖,由于版本问题可能会出现bug。
# 可以通过如下操作解决 npm 下载速度慢的问题
npm install --registry=https://registry.npm.taobao.org# 启动本地开发服务
npm run serve:dev# 启动本地测试服务
npm run serve:test# Vite移除cache (避免更新package后仍使用旧版依赖产生未知问题)
npm run serve:dev --force
# 或者
rm -rf node_modules/.vite
```## 部署
```bash
# 构建生产环境
npm run build
```