emnj-tool 1.1.0 → 1.1.1
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.
- package/README.md +36 -0
- package/package.json +2 -2
package/README.md
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
# 脚手架工具
|
2
|
+
|
3
|
+
该脚手架工具的主要目的是为了在新建项目过程摈弃繁琐的的配置,可以直接使用模版进入开发阶段
|
4
|
+
|
5
|
+
## H5项目
|
6
|
+
|
7
|
+
目标:快速进入H5项目开发
|
8
|
+
|
9
|
+
支持:
|
10
|
+
|
11
|
+
1. 低版本系统支持:iOS系统 >= iOS8,Android系统 >= Android5.0
|
12
|
+
2. 支持typescript开发
|
13
|
+
3. 使用vue2.7.15版本,并支持Composition API
|
14
|
+
4. 使用pinia作为状态库管理
|
15
|
+
|
16
|
+
## 管理后台项目
|
17
|
+
|
18
|
+
目标:快速进入管理系统的项目开发
|
19
|
+
|
20
|
+
支持:
|
21
|
+
|
22
|
+
1. 使用typescript + vue3.x + pinia + element plus开发
|
23
|
+
2. 支持选择使用oa/账号密码进行登录
|
24
|
+
|
25
|
+
## 如何使用
|
26
|
+
|
27
|
+
```shell
|
28
|
+
# 安装emnj-tool
|
29
|
+
npm install emnj-tool -g
|
30
|
+
|
31
|
+
# 初始化h5项目
|
32
|
+
emnj-tool init --h5
|
33
|
+
|
34
|
+
# 初始化web项目
|
35
|
+
emnj-tool init --web
|
36
|
+
```
|