zydx-plus 1.15.57 → 1.15.58
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/package.json +1 -1
- package/src/index.js +6 -3
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -17,6 +17,7 @@ import tab from './components/tab/index';
|
|
|
17
17
|
import word from './components/word/index';
|
|
18
18
|
import mind from './components/mind/index';
|
|
19
19
|
import bizHeader from './components/biz_header/index';
|
|
20
|
+
import editor2 from './components/editor2/index';
|
|
20
21
|
|
|
21
22
|
const components = [
|
|
22
23
|
Calendar,
|
|
@@ -35,7 +36,8 @@ const components = [
|
|
|
35
36
|
tab,
|
|
36
37
|
word,
|
|
37
38
|
mind,
|
|
38
|
-
bizHeader
|
|
39
|
+
bizHeader,
|
|
40
|
+
editor2
|
|
39
41
|
];
|
|
40
42
|
|
|
41
43
|
function install(app) {
|
|
@@ -47,7 +49,7 @@ function install(app) {
|
|
|
47
49
|
}
|
|
48
50
|
|
|
49
51
|
export default {
|
|
50
|
-
version: '1.15.
|
|
52
|
+
version: '1.15.58',
|
|
51
53
|
install,
|
|
52
54
|
Calendar,
|
|
53
55
|
Message,
|
|
@@ -67,6 +69,7 @@ export default {
|
|
|
67
69
|
tab,
|
|
68
70
|
word,
|
|
69
71
|
mind,
|
|
70
|
-
bizHeader
|
|
72
|
+
bizHeader,
|
|
73
|
+
editor2
|
|
71
74
|
};
|
|
72
75
|
|