tools_dj 1.0.2 → 1.0.4
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 +5 -13
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,20 +1,12 @@
|
|
|
1
|
-
#
|
|
1
|
+
# 工具库模板
|
|
2
2
|
|
|
3
3
|
## 介绍
|
|
4
|
-
|
|
4
|
+
tools工具库
|
|
5
|
+
后期可以直接安装和修改
|
|
5
6
|
|
|
6
7
|
## 安装
|
|
7
|
-
npm i
|
|
8
|
+
npm i tools_dj
|
|
8
9
|
|
|
9
10
|
## 使用
|
|
10
|
-
import {
|
|
11
|
-
setThemeData({themeColor:'#38bd14', brightColor:'#0036ea', darkColor:'#9f450a'})
|
|
11
|
+
import {方法} from "tools_dj";
|
|
12
12
|
|
|
13
|
-
{themeColor:'#38bd14', brightColor:'#0036ea', darkColor:'#9f450a'},
|
|
14
|
-
themeColor: 主体颜色
|
|
15
|
-
brightColor: 亮处颜色
|
|
16
|
-
darkColor: 暗处颜色 不给黑色到亮色前一个色阶
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
## 开发者注意事项
|
|
20
|
-
开发环境中携带_dev 文件的将它和原文件替换可以实现开发者环境 代码不压缩 原生打包
|