{"id":19647113,"url":"https://github.com/lanif-ui/vue-boot-template","last_synced_at":"2025-02-27T00:18:25.570Z","repository":{"id":39116436,"uuid":"265109439","full_name":"LANIF-UI/vue-boot-template","owner":"LANIF-UI","description":":cake: vue admin dashboard ui --- vue2 + element-ui 2 后台管理 脚手架","archived":false,"fork":false,"pushed_at":"2023-03-04T19:41:41.000Z","size":2809,"stargazers_count":10,"open_issues_count":20,"forks_count":4,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-09T21:54:15.207Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://lanif-ui.github.io/vue-boot-template","language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/LANIF-UI.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-05-19T01:31:56.000Z","updated_at":"2023-09-04T05:59:51.000Z","dependencies_parsed_at":"2023-01-28T01:15:30.290Z","dependency_job_id":null,"html_url":"https://github.com/LANIF-UI/vue-boot-template","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LANIF-UI%2Fvue-boot-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LANIF-UI%2Fvue-boot-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LANIF-UI%2Fvue-boot-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LANIF-UI%2Fvue-boot-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LANIF-UI","download_url":"https://codeload.github.com/LANIF-UI/vue-boot-template/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240953656,"owners_count":19884053,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-11T14:42:33.055Z","updated_at":"2025-02-27T00:18:25.551Z","avatar_url":"https://github.com/LANIF-UI.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003eVUE Boot Template\u003c/h1\u003e\n\u003ch3 align=\"center\"\u003e:lemon: :tangerine: :cherries: :cake: :grapes: :watermelon: :strawberry: :corn: :peach: :melon:\u003c/h3\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://img.shields.io/badge/license-MIT-brightgreen.svg\"\u003e\n  \u003cimg src=\"https://img.shields.io/badge/developing%20with-VUE%20BOOT%20Template-2077ff.svg\"\u003e\n\u003c/p\u003e\n\n基于VUE生态系统的最成熟的技术体系，搭建的一套开箱即用的后台管理系统，框架里包含了一些独有的定制组件，以及许多经过大量实践口碑良好的第三方组件，它不仅仅是一个简单的仪表盘展示界面，更是保证您下一个web项目所必需的所有工具，我们希望使用它的人可以快速、稳定的开发出健壮、美观、易用的web程序。\n\n[GitHub主页](https://github.com/LANIF-UI/vue-boot-template) |\n[码云主页](https://gitee.com/wiqi/vue-boot-template)\n\n![](https://ucarecdn.com/4beb558f-6c6d-42e4-ab22-c790c05a1cd4/_20200721093520.png)\n\n## 工程结构\n```\n.\n├── mock                     # 模拟请求数据\n├── public                   # 不参与编译的资源文件\n├── templates                # 代码生成器所需的模板文件\n├── src                      # 主程序目录\n│   ├── main.js              # 程序启动和渲染入口文件\n│   ├── settings.js          # 全局配置\n│   ├── api                  # 公共接口定义\n│   ├── components           # 全局公共组件\n│   ├── layouts              # 页面结构组件\n│   │   ├── BasicLayout      # 带头部及侧边栏的典型后台应用布局\n│   │   └── InsetLayout      # 插件布局\n│   │   └── BlankLayout      # 空白布局\n│   ├── routes               # 动态路由目录（每个功能一个文件夹的MVC结构）\n│   │   ├── index.js         # 路由配置文件\n│   │   ├── Home             # 功能模块\n│   │   │   ├── index.js     # 路由配置文件\n│   │   │   ├── assets       # 单独属于这个模块的静态资源文件\n│   │   │   ├── components   # 页面组件\n│   │   │   ├── module       # vues module\n│   │   │   ├── service      # 接口定义\n│   │   │   └── routes **    # 子路由(目录结构与父级相同)\n│   │   └── Login            # 功能模块\n│   │       ├── index.js     # 路由配置文件\n│   │       ├── assets       # 单独属于这个模块的静态资源文件\n│   │       ├── components   # 页面组件\n│   │       ├── module       # vues model\n│   │       ├── service      # 接口定义\n│   │       └── routes **    # 子路由(目录结构与父级相同)\n│   ├── utils                # 工具类\n│   └── assets               # 资源文件\n│           ├── fonts        # 字体 \u0026 字体图标\n│           ├── images       # 图片\n│           ├── styles       # 全局样式\n│           └── styles       # 全局样式\n|                 ├── element-ui  # 全局自定义 element-ui 样式\n|                 ├── index.scss  # 全局通用样式\n|                 ├── mixin.scss  # 全局mixin\n|                 ├── transition.scss  # vue transition 动画\n|                 └── variables.scss   # 全局变量\n```\n\n## 启动\n\n```bash\n\n# 安装依赖\n# 国内用户建议改成国内镜像\nnpm config set sass-binary-site http://npm.taobao.org/mirrors/node-sass\nnpm config set registry https://registry.npm.taobao.org\nnpm install\n\n# 启动服务\nnpm start\n\n# yarn 安装\nyarn config set registry https://registry.npm.taobao.org -g\nyarn config set sass_binary_site http://cdn.npm.taobao.org/dist/node-sass -g\nyarn\n\n# 启动服务\nyarn start\n```\n\n## 使用[代码生成器](https://github.com/weiq/boot-template-cli)创建路由页\n```bash\ncreate-template\n```\n\n## 发布\n\n```bash\n# 构建测试环境\nnpm run build:stage\n\n# 构建生产环境\nnpm run build:prod\n```\n\n## 其它\n\n```bash\n# 预览发布环境效果\nnpm run preview\n\n# 预览发布环境效果 + 静态资源分析\nnpm run preview -- --report\n\n# 代码格式检查\nnpm run lint\n\n# 代码格式检查并自动修复\nnpm run lint -- --fix\n```\n\n## 结尾\n\n欢迎大家提问题，感谢大家的PR，如果觉得不错，还请帮忙加个:star:哦\n\n企鹅群 820881369 :penguin:\n\nfork自 [vue-admin-template](https://github.com/PanJiaChen/vue-admin-template)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flanif-ui%2Fvue-boot-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flanif-ui%2Fvue-boot-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flanif-ui%2Fvue-boot-template/lists"}