zydx-plus 1.32.212 → 1.32.213

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": "zydx-plus",
3
- "version": "1.32.212",
3
+ "version": "1.32.213",
4
4
  "description": "Vue.js",
5
5
  "main": "src/index.js",
6
6
  "files": [
@@ -141,7 +141,7 @@ export default {
141
141
  hard: '-',
142
142
  mid: '-',
143
143
  allScore: '-',
144
- count: '-',
144
+ count: '-'
145
145
  }]
146
146
  this.empty = true
147
147
  }else {
@@ -345,4 +345,4 @@ export default {
345
345
  display: inline-block;
346
346
  font-weight: bold;
347
347
  }
348
- </style>
348
+ </style>
package/src/index.js CHANGED
@@ -32,6 +32,7 @@ import pictureViewer from './components/pictureViewer/index';
32
32
  import lessonTemplate from './components/lesson_template/index';
33
33
  import paper from './components/word2/index';
34
34
  import question from './components/question/index';
35
+ import tagging from './components/tagging/index';
35
36
 
36
37
  const components = [
37
38
  Calendar,
@@ -65,7 +66,8 @@ const components = [
65
66
  pictureViewer,
66
67
  lessonTemplate,
67
68
  paper,
68
- question
69
+ question,
70
+ tagging
69
71
  ];
70
72
 
71
73
  function install(app) {
@@ -77,7 +79,7 @@ function install(app) {
77
79
  }
78
80
 
79
81
  export default {
80
- version: '1.32.212',
82
+ version: '1.32.213',
81
83
  install,
82
84
  Calendar,
83
85
  Message,
@@ -112,6 +114,7 @@ export default {
112
114
  pictureViewer,
113
115
  lessonTemplate,
114
116
  paper,
115
- question
117
+ question,
118
+ tagging
116
119
  };
117
120