@jx3box/jx3box-ui 2.1.15 → 2.1.17
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jx3box/jx3box-ui",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.17",
|
|
4
4
|
"description": "JX3BOX Vue3 UI",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@element-plus/icons-vue": "^2.3.2",
|
|
35
|
-
"@jx3box/jx3box-common": "^9.2.
|
|
35
|
+
"@jx3box/jx3box-common": "^9.2.3",
|
|
36
36
|
"@jx3box/jx3box-data": "^3.9.5",
|
|
37
37
|
"@jx3box/jx3box-editor": "^3.1.4",
|
|
38
38
|
"@jx3box/jx3box-emotion": "^1.3.1",
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"@vue/cli-service": "~5.0.0",
|
|
75
75
|
"autoprefixer": "^10.4.27",
|
|
76
76
|
"cross-env": "^7.0.3",
|
|
77
|
-
"csslab": "^6.0.
|
|
77
|
+
"csslab": "^6.0.6",
|
|
78
78
|
"eslint": "^7.32.0",
|
|
79
79
|
"eslint-plugin-vue": "^8.0.3",
|
|
80
80
|
"husky": "^8.0.0",
|
package/src/single/CmsSingle.vue
CHANGED
|
@@ -83,6 +83,7 @@ import PostHeader from "./PostHeader.vue";
|
|
|
83
83
|
import Creators from "./Creators.vue";
|
|
84
84
|
import Collection from "./Collection.vue";
|
|
85
85
|
import Thx from "./Thx.vue";
|
|
86
|
+
import Comment from './Comment.vue';
|
|
86
87
|
import RightAffix from "./RightAffix.vue";
|
|
87
88
|
import Article from "@jx3box/jx3box-editor/src/Article.vue";
|
|
88
89
|
import JX3BOX from "@jx3box/jx3box-common/data/jx3box.json";
|
|
@@ -100,6 +101,7 @@ export default {
|
|
|
100
101
|
Collection,
|
|
101
102
|
Thx,
|
|
102
103
|
Article,
|
|
104
|
+
Comment,
|
|
103
105
|
RightAffix,
|
|
104
106
|
},
|
|
105
107
|
props: {
|