mic-org 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.
- package/README.md +6 -10
- package/package.json +1 -4
package/README.md
CHANGED
|
@@ -1,15 +1,12 @@
|
|
|
1
1
|
# market-integrate-component
|
|
2
|
-
|
|
3
|
-
**简称:mic**
|
|
2
|
+
**简称:mic-org**
|
|
4
3
|
|
|
5
4
|
---------------------------------
|
|
6
5
|
|
|
7
|
-
> 仅限于 vue3 + vite +element-plus + sass
|
|
8
|
-
> 因为部分组件以及样式有调用
|
|
6
|
+
> 仅限于 vue3 + vite +element-plus + sass 工程中,因为部分组件以及样式有调用
|
|
9
7
|
|
|
10
8
|
---------------------------------
|
|
11
9
|
## 组件输出
|
|
12
|
-
|
|
13
10
|
| Component | Description |
|
|
14
11
|
| -------------- | ----------- |
|
|
15
12
|
| mic-layout | 用于整体布局 |
|
|
@@ -22,7 +19,6 @@
|
|
|
22
19
|
---------------------------------
|
|
23
20
|
|
|
24
21
|
## 方法输出
|
|
25
|
-
|
|
26
22
|
| Function | Description |
|
|
27
23
|
| -------------- | ----------- |
|
|
28
24
|
| Mic_Reset | 用于重置对象中的内容 |
|
|
@@ -34,7 +30,7 @@
|
|
|
34
30
|
|
|
35
31
|
``` text
|
|
36
32
|
|
|
37
|
-
npm install mic
|
|
33
|
+
npm install mic-org
|
|
38
34
|
|
|
39
35
|
```
|
|
40
36
|
|
|
@@ -44,8 +40,8 @@ npm install mic@latest
|
|
|
44
40
|
|
|
45
41
|
``` main.js
|
|
46
42
|
|
|
47
|
-
import 'mic/dist/index.css'; // 组件样式
|
|
48
|
-
import mic from 'mic'; // 组件全局导入
|
|
43
|
+
import 'mic-org/dist/index.css'; // 组件样式
|
|
44
|
+
import mic from 'mic-org'; // 组件全局导入
|
|
49
45
|
|
|
50
46
|
app.use(mic);
|
|
51
47
|
|
|
@@ -53,6 +49,6 @@ app.use(mic);
|
|
|
53
49
|
|
|
54
50
|
``` other.js
|
|
55
51
|
|
|
56
|
-
import { Mic_Reset, Mic_Check } from 'mic'; // 方法导入
|
|
52
|
+
import { Mic_Reset, Mic_Check } from 'mic-org'; // 方法导入
|
|
57
53
|
|
|
58
54
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mic-org",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"main": "./dist/mic.umd.js",
|
|
5
5
|
"module": "./dist/mic.es.js",
|
|
6
6
|
"exports": {
|
|
@@ -97,9 +97,6 @@
|
|
|
97
97
|
"vscode-uri": "^3.1.0",
|
|
98
98
|
"vue": "^3.5.22"
|
|
99
99
|
},
|
|
100
|
-
"keywords": [
|
|
101
|
-
"mic"
|
|
102
|
-
],
|
|
103
100
|
"author": "ZhuMengJie",
|
|
104
101
|
"license": "ISC"
|
|
105
102
|
}
|