wireguard-dashboard页面
Go to file
2024-08-21 08:54:33 +08:00
.github Update FUNDING.yml 2023-10-13 14:44:04 +08:00
.husky chore: setup lint-staged 2022-07-15 14:48:40 +08:00
.idea 🎨添加CI 2024-08-20 10:32:14 +08:00
.vscode build: update settings.json 2024-04-24 21:22:29 +08:00
build 🎉新版本页面 2024-08-08 15:32:17 +08:00
docker 🎨修复 2024-08-20 16:45:35 +08:00
docs docs: add docs 2022-10-28 15:03:04 +08:00
mock mod: 切换域名 2023-10-28 20:27:00 +08:00
public feat: 更新logo 2023-08-17 18:30:24 +08:00
settings refactor: 简化proxy配置 2023-06-21 21:53:33 +08:00
src 🎨优化一下 2024-08-09 16:24:31 +08:00
.cz-config.js build: update commitlint 2022-08-27 14:50:34 +08:00
.drone.yml 🎨更改ci 2024-08-20 11:07:39 +08:00
.editorconfig first commit 2022-01-08 17:20:46 +08:00
.env 🎉新版本页面 2024-08-08 15:32:17 +08:00
.env.development 🎨路由模式改为hash模式 2024-08-21 08:54:33 +08:00
.env.github mod: 切换域名 2023-10-28 20:27:00 +08:00
.env.production 🎨路由模式改为hash模式 2024-08-21 08:54:33 +08:00
.env.test refactor: refactor 2022-08-27 14:09:32 +08:00
.eslint-global-variables.json style: lint fix 2023-05-07 22:20:57 +08:00
.eslintignore chore: 简化eslint配置 2022-05-06 22:34:55 +08:00
.gitignore feat: 集成rollup打包分析插件 2022-04-19 21:50:19 +08:00
.prettierignore first commit 2022-01-08 17:20:46 +08:00
.prettierrc.json chore: update .prettierrc 2023-06-03 16:34:50 +08:00
commitlint.config.js build: update commitlint 2022-08-27 14:50:34 +08:00
Dockerfile 🐳dockerfile 2024-08-20 11:14:11 +08:00
index.html feat: 更新logo 2023-08-17 18:30:24 +08:00
jsconfig.json chore: 调整别名优先级 2023-11-05 15:42:21 +08:00
LICENSE Create LICENSE 2022-04-10 12:57:19 +08:00
package.json 🎉新版本页面 2024-08-08 15:32:17 +08:00
pnpm-lock.yaml 🎉新版本页面 2024-08-08 15:32:17 +08:00
README.EN.md Update README.EN.md 2023-12-08 14:33:15 +08:00
README.md docs: update readme 2023-12-20 21:21:34 +08:00
unocss.config.js feat: add unocss preset rem to px 2023-08-03 17:20:21 +08:00
vercel.json build: add vercel.json 2023-04-23 14:38:50 +08:00
vite.config.js 🎨路由模式改为hash模式 2024-08-21 08:54:33 +08:00

Vue Naive Admin Logo

英文 | 中文

Introduction

Vue Naive Admin is a **completely open source free and commercially allowed ** admin templateBased on the latest technology stack of front-end such as Vue3、Vite3、Pinia、Unocss and Naive UI. Compared with other more popular backend management templates, this project is more concise, lightweight, fresh style, very low learning costs, ideal for small and medium-sized projects or personal projects.

Features

  • 🍒 Integrated Naive UIrecommended by Evan You.
  • 🍑 Integrated login, logout and permission verification.
  • 🍐 Integrated multi-environment configuration, dev, test, production and github pages environments.
  • 🍎 Integrated eslint + prettier.
  • 🍌 Integrated husky + commitlint.
  • 🍉 Integrated Mock.
  • 🍍 Integrated pinialightweight, simple and easy to use alternative to vuex.
  • 📦 Integrated unplugin auto import.
  • 🤹 Integrated iconify iconsupport custom svg icons.
  • 🍇 Integrated unocss.

Preview

https://template.isme.top

https://base.isme.top

Docs

Vue Naive Admin Docs

Getting Started

# Recommended setup git autocrlf 为 false
git config --global core.autocrlf false

# Clone Project
git clone https://github.com/zclzone/vue-naive-admin.git

cd vue-naive-admin

# Install dependencies(Recommended use pnpm: https://pnpm.io/zh/installation)
npm i -g pnpm # Installed and can be ignored
pnpm i # or npm i

# Start
pnpm dev

Build and Release

# Test Environment
pnpm build:test

# Github Environment
pnpm build:github

# Prod Environment
pnpm build

Other

# eslint check
pnpm lint

# eslint check and fix
pnpm lint:fix

# PreviewNeed to build first
pnpm preview

# Commithusky+commitlint
pnpm cz

Directory description

Vue Naive Admin
|-- .github                             // github相关如推送github仓库后自动部署gh pages
|-- .husky                              // git commit钩子
|-- .vscode                             // vscode编辑器相关
|   |-- extensions.json                 // 插件推荐
|   |-- settings.json                   // 项目级别的vscode配置优先级大于全局vscode配置
|-- build                               // 构建相关配置
|   |-- constant.js                     // 构建相关的常量
|   |-- utils.js                        // 构建相关的工具方法
|   |-- config                          
|   |   |-- define.js                   // 注入全局常量启动或打包后将添加到window中
|   |   |-- proxy.js                    // 代理配置
|   |-- plugin                          
|   |   |-- html.js                     // vite-plugin-html插件用于注入变量或者html标签
|   |   |-- mock.js                     // vite-plugin-mock插件处理mock
|   |   |-- unplugin.js                 // unplugin相关插件包含DefineOptions和自动导入
|   |-- script                          // 打包完成后执行的一些node脚本不重要
|       |-- build-cname.js              // 自动生成cname
|-- mock                                // mock
|   |-- utils.js                        // mock请求需要用到的工具方法
|   |-- api                             // mock接口
|-- public                              // 公共资源文件夹下的文件会在打包后会直接加到dist根目录下
|-- settings                            // 项目配置
|   |-- proxy-config.js                 // 代理配置文件
|   |-- theme.json                      // 主题配置项,主题色等
|-- src
|   |-- api                             // 公共api
|   |-- assets                          // 静态资源
|   |   |-- images                      // 图片
|   |   |-- svg                         // svg图标
|   |-- components                      // 全局组件
|   |   |-- common                      // 公共组件
|   |   |-- icon                        // icon相关组件
|   |   |-- page                        // 页面组件
|   |   |-- query-bar                   // 查询选项
|   |   |-- table                       // 封装的表格组件
|   |-- composables                     // 封装的组合式函数
|   |-- layout                          // 布局相关组件
|   |   |-- components
|   |       |-- AppMain.vue             // 主体内容
|   |       |-- header                  // 头部
|   |       |-- sidebar                 // 侧边菜单栏
|   |       |-- tags                    // 多页签栏
|   |-- router                          // 路由
|   |   |-- guard                       // 路由守卫
|   |   |-- routes                      // 路由列表
|   |-- store                           // 状态管理pinia
|   |   |-- modules                     // 模块
|   |       |-- app                     // 管理页面重新加载、折叠菜单栏和keepAlive等
|   |       |-- permission              // 权限相关,管理权限菜单
|   |       |-- tags                    // 管理多页签
|   |       |-- user                    // 用户模块,管理用户信息、登录登出
|   |-- styles                          // 样式
|   |-- utils                           // 封装的工具方法
|   |   |-- auth                        // 权限相关如token、跳转登录页等
|   |   |-- common                      // 通用
|   |   |-- http                        // 封装axios
|   |   |-- storage                     // 封装localStorage和sessionStorage
|   |-- views                           // 页面
|   |   |-- demo                        // 示例
|   |   |-- error-page                  // 错误页
|   |   |-- login                       // 登录页
|   |   |-- workbench                   // 首页  
|   |-- App.vue
|   |-- main.js
|-- .cz-config.js                       // git提交配置
|-- .editorconfig                       // 编辑器配置
|-- .env                                // 环境文件,所有环境都会载入
|-- .env.development                    // 开发环境文件
|-- .env.production                     // 生产环境文件
|-- .env.test                           // 测试环境文件
|-- .eslintignore                       // eslint忽略
|-- .eslintrc.js                        // eslint配置
|-- .gitignore                          // git忽略
|-- .prettierignore                     // prettier格式化忽略
|-- commitlint.config.js                // commitlint规范配置
|-- index.html                          
|-- jsconfig.json                       // js配置
|-- LICENSE                             // 协议
|-- package.json                        // 依赖描述文件
|-- pnpm-lock.yaml                      // 依赖锁定文件
|-- prettier.config.js                  // prettier格式化配置
|-- README.md                           // 项目描述文档(英文)
|-- README.zh-CN.md                     // 项目描述文档(中文)
|-- unocss.config.js                    // unocss配置
|-- vite.config.js                      // vite配置

TS version: Qs Admin

source code

preview

Open source projects that use this project:

  • gin-vue-blog: A full-stack blog project in Golang, the frontend of the blog backend is based on vue-naive-admin and integrates with a real backend service, implementing features such as backend-controlled routing.
  • vue-fastapi-admin: A Python backend management project that integrates RBAC permission management, dynamic routing, and JWT authentication, helping small and medium-sized applications to quickly establish a foundation.

Communication group & About the author