cosey 0.1.4 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +59 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,59 @@
1
+ <div align="center">
2
+ <img width="160" src="https://fastly.jsdelivr.net/npm/@gunny/files@latest/cosey-logo.svg" />
3
+
4
+ <p>一个基于 Vue3 + TypeScript + Vite 的后台管理框架</p>
5
+
6
+ <h1>Cosey Admin</h1>
7
+
8
+ [📖文档](https://docs.cosey.wzt.zone/) | [🧑🏻‍🏫演示](https://cosey.wzt.zone/)
9
+
10
+ </div>
11
+
12
+ ## 关于 Cosey Admin
13
+
14
+ Cosey 是一个基于 Vue3、Vite、TypeScript 的后台解决方案,专门为开发中大型项目提供开箱即用的基础框架,让您可以专心于业务逻辑的开发。
15
+
16
+ Cosey 封装了页面布局、路由菜单、接口请求、核心全局状态管理、菜单和按钮级别的权限管理、主题,并提供了大量的组件和工具,绝对让您从项目搭建到部署都做到省心省时省力。
17
+
18
+ 像有些后台框架需要从 github 下载项目源码,网络慢不说,升级时还容易造成代码冲突。使用 Cosey 就没有这种问题。
19
+
20
+ Cosey 以包的形式发布到 npm 上,包括创建项目时使用的 `create-cosey` 包和运行时使用的 `cosey` 包。你可以从各种注册表源下载 Cosey 包;更新迭代时,升级包即可,不会有代码冲突问题。
21
+
22
+ ## 基于 element-plus
23
+
24
+ element-plus 是 vue3 生态中最优雅的 UI 组件库之一,兼具企业级设计的严谨与开发者友好的灵活性,接口简单易用。
25
+
26
+ Cosey 基于 element-plus 并补充了众多组件,意在使开发者更加专注于业务逻辑的开发。
27
+
28
+ 同时对 element-plus 默认主题进行了修改,避免产生审美疲劳,通过简单的配置,你也可以定义自己的主题。
29
+
30
+ ## 质量与规范
31
+
32
+ 通过 `create-cosey` 初始化的项目,预设了 eslint、prettier 工具来确保代码质量。另外,stylelint、commitlint 等工具可视情况来安装。
33
+
34
+ ## 浏览器支持
35
+
36
+ <table>
37
+ <thead>
38
+ <tr>
39
+ <th>IE <img src="https://fastly.jsdelivr.net/npm/@gunny/files@latest/LogosInternetexplorer.svg" width="24" height="24" /></th>
40
+ <th>Edge <img src="https://fastly.jsdelivr.net/npm/@gunny/files@latest/LogosMicrosoftEdge.svg" width="24" height="24" /></th>
41
+ <th>Chrome <img src="https://fastly.jsdelivr.net/npm/@gunny/files@latest/LogosChrome.svg" width="24" height="24" /></th>
42
+ <th>Firefox <img src="https://fastly.jsdelivr.net/npm/@gunny/files@latest/LogosFirefox.svg" width="24" height="24" /></th>
43
+ <th>Safari <img src="https://fastly.jsdelivr.net/npm/@gunny/files@latest/LogosSafari.svg" width="24" height="24" /></th>
44
+ </tr>
45
+ </thead>
46
+ <tbody>
47
+ <tr>
48
+ <td>不支持</td>
49
+ <td>≥ 85</td>
50
+ <td>≥ 85</td>
51
+ <td>≥ 79</td>
52
+ <td>≥ 14.1</td>
53
+ </tr>
54
+ </tbody>
55
+ </table>
56
+
57
+ ## 开源协议
58
+
59
+ 本项目基于 [MIT](https://zh.wikipedia.org/wiki/MIT%E8%A8%B1%E5%8F%AF%E8%AD%89) 协议,请自由地享受和参与开源。
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cosey",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "基于 Vue3 的后台管理框架",
5
5
  "type": "module",
6
6
  "main": "index.js",