@zykjcommon/questions 0.0.20 → 0.0.21
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 +4 -4
- package/src/main.ts +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zykjcommon/questions",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.21",
|
|
4
4
|
"main": "src/components/questions/entry.js",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"serve": "vue-cli-service serve",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"build:lib": "vue-cli-service build --target lib src/components/questions/buildEntry.js --name zykjcommon-questions"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@zykjcommon/questions": "^0.0.
|
|
15
|
+
"@zykjcommon/questions": "^0.0.20",
|
|
16
16
|
"alife-logger": "^1.8.30",
|
|
17
17
|
"axios": "^0.26.0",
|
|
18
18
|
"cookie": "^0.4.1",
|
|
@@ -21,12 +21,12 @@
|
|
|
21
21
|
"element-plus": "^2.0.2",
|
|
22
22
|
"md5": "^2.2.1",
|
|
23
23
|
"mitt": "^3.0.0",
|
|
24
|
+
"mobile-detect": "^1.4.5",
|
|
24
25
|
"video.js": "^7.6.0",
|
|
25
26
|
"vue": "^3.0.0",
|
|
26
27
|
"vue-router": "^4.0.0-0",
|
|
27
28
|
"vuex": "^4.0.0-0",
|
|
28
|
-
"vuex-composition-helpers": "^2.0.1"
|
|
29
|
-
"mobile-detect": "^1.4.5"
|
|
29
|
+
"vuex-composition-helpers": "^2.0.1"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@types/node": "^18.11.9",
|
package/src/main.ts
CHANGED
|
@@ -174,14 +174,14 @@ vueInstance.use(validationPlugin)
|
|
|
174
174
|
|
|
175
175
|
|
|
176
176
|
|
|
177
|
-
import ZYKJQuestionsPlugin from "@src/components/questions/developmentEntry.js"
|
|
177
|
+
// import ZYKJQuestionsPlugin from "@src/components/questions/developmentEntry.js"
|
|
178
178
|
// vueInstance.use((ZYKJQuestionsPlugin as any)(store))
|
|
179
179
|
|
|
180
180
|
// import ZYKJQuestionsPlugin from "../dist/zykjcommon-questions.umd.min"
|
|
181
|
-
|
|
181
|
+
import ZYKJQuestionsPlugin from "@zykjcommon/questions"
|
|
182
182
|
vueInstance.use((ZYKJQuestionsPlugin as any)(store))
|
|
183
|
-
|
|
184
|
-
import '@src/assets/scss/questions/zykjcommon-questions.scss';
|
|
183
|
+
import '@zykjcommon/questions/src/assets/scss/questions/zykjcommon-questions.scss';
|
|
184
|
+
// import '@src/assets/scss/questions/zykjcommon-questions.scss';
|
|
185
185
|
|
|
186
186
|
// console.log(ZYKJQuestionsPlugin,111);
|
|
187
187
|
|