|
|
1 anno fa | |
|---|---|---|
| .github | 2 anni fa | |
| bin | 2 anni fa | |
| html | 2 anni fa | |
| public | 2 anni fa | |
| src | 1 anno fa | |
| vite | 2 anni fa | |
| .env.development | 2 anni fa | |
| .env.production | 2 anni fa | |
| .env.staging | 2 anni fa | |
| .gitignore | 2 anni fa | |
| README.md | 1 anno fa | |
| index.html | 2 anni fa | |
| jsconfig.json | 2 anni fa | |
| package.json | 2 anni fa | |
| vite.config.js | 1 anno fa |
# 克隆项目
git clone https://github.com/yangzongzhuan/RuoYi-Vue3.git
# 进入项目目录
cd RuoYi-Vue3
# 安装依赖
yarn --registry=https://registry.npmmirror.com
# 启动服务
yarn dev
# 构建测试环境 yarn build:stage
# 构建生产环境 yarn build:prod
# 前端访问地址 http://localhost:80
演示地址:http://vue.ruoyi.vip
文档地址:http://doc.ruoyi.vip
├── build // 构建相关
├── bin // 执行脚本
├── public // 公共文件
│ ├── favicon.ico // favicon图标
│ └── index.html // html模板
│ └── robots.txt // 反爬虫
├── src // 源代码
│ ├── api // 所有请求
│ ├── assets // 主题 字体等静态资源
│ ├── components // 全局公用组件
│ ├── directive // 全局指令
│ ├── layout // 布局
│ ├── plugins // 通用方法
│ ├── router // 路由
│ ├── store // 全局 store管理
│ ├── utils // 全局公用方法
│ ├── views // view
│ ├── App.vue // 入口页面
│ ├── main.js // 入口 加载组件 初始化等
│ ├── permission.js // 权限管理
│ └── settings.js // 系统配置
├── .editorconfig // 编码格式
├── .env.development // 开发环境配置
├── .env.production // 生产环境配置
├── .env.staging // 测试环境配置
├── .eslintignore // 忽略语法检查
├── .eslintrc.js // eslint 配置项
├── .gitignore // git 忽略项
├── babel.config.js // babel.config.js
├── package.json // package.json
└── vue.config.js // vue.config.js