sks-plugin-el-erp 1.0.0 → 1.0.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.
Files changed (3) hide show
  1. package/README.md +13 -0
  2. package/index.js +5 -2
  3. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # element用于erp的扩展
2
+
3
+ # 发布新版本
4
+ ```shell
5
+ npm publish
6
+ ```
7
+
8
+ ## 撤销发布包
9
+ 千万不要使用
10
+ 即使你撤销了发布的包,发包的时候也不能再和被撤销的包的名称和版本重复了
11
+ ```shell
12
+ #npm unpublish
13
+ ```
package/index.js CHANGED
@@ -1,9 +1,12 @@
1
1
  import Vue from 'vue'
2
- import {isNullOrUndefined} from "./lib/core";
2
+ import {isNullOrUndefined, strIfEmpty, strIsEmpty, strLength} from "./lib/core";
3
3
 
4
4
 
5
5
  const sksUtils={
6
- isNullOrUndefined
6
+ isNullOrUndefined,
7
+ strIsEmpty,
8
+ strIfEmpty,
9
+ strLength
7
10
  }
8
11
 
9
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sks-plugin-el-erp",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "用于erp的element扩展",
5
5
  "main": "index.js",
6
6
  "scripts": {