ai-error-assistant-mobile 0.0.6 → 0.0.7
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/components/demo/src/feedback.vue +76 -33
- package/components/demo/src/main.vue +1 -1
- package/dist/ai-error-assistant-mobile.common.js +24 -14
- package/dist/ai-error-assistant-mobile.common.js.map +1 -1
- package/dist/ai-error-assistant-mobile.css +1 -1
- package/dist/ai-error-assistant-mobile.umd.js +24 -14
- package/dist/ai-error-assistant-mobile.umd.js.map +1 -1
- package/dist/ai-error-assistant-mobile.umd.min.js +2 -2
- package/dist/ai-error-assistant-mobile.umd.min.js.map +1 -1
- package/package.json +1 -1
|
@@ -2,9 +2,13 @@
|
|
|
2
2
|
<div class="feedback-drawer-wrap">
|
|
3
3
|
<div class="feedback-mask" @click="$emit('close')"></div>
|
|
4
4
|
<div class="feedback-drawer" :class="{ open: true }">
|
|
5
|
+
<div class="nav-top-space" :style="{ height: (navTopHeight || 0) + 'px' }"></div>
|
|
5
6
|
<div class="feedback-header">
|
|
6
7
|
<div class="header-icon-wrap">
|
|
7
|
-
<svg class="header-icon" width="32" height="32" viewBox="0 0 32 32"
|
|
8
|
+
<svg class="header-icon" width="32" height="32" viewBox="0 0 32 32">
|
|
9
|
+
<circle cx="16" cy="16" r="16" fill="#7a8bff"/>
|
|
10
|
+
<text x="16" y="22" text-anchor="middle" font-size="20" fill="#fff">!</text>
|
|
11
|
+
</svg>
|
|
8
12
|
</div>
|
|
9
13
|
<button class="close-btn" @click="$emit('close')">×</button>
|
|
10
14
|
<h2>您的反馈对我们很重要</h2>
|
|
@@ -16,10 +20,10 @@
|
|
|
16
20
|
<el-form-item prop="description" style="margin-bottom: 0px;">
|
|
17
21
|
<label for="description">问题描述</label>
|
|
18
22
|
<textarea
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
+
id="description"
|
|
24
|
+
v-model="form.description"
|
|
25
|
+
placeholder="请详细描述您遇到的问题,以便我们更好地帮助您"
|
|
26
|
+
rows="4"
|
|
23
27
|
/>
|
|
24
28
|
</el-form-item>
|
|
25
29
|
</div>
|
|
@@ -27,27 +31,27 @@
|
|
|
27
31
|
<el-form-item prop="phone">
|
|
28
32
|
<label for="phone">联系方式</label>
|
|
29
33
|
<input
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
34
|
+
id="phone"
|
|
35
|
+
v-model="form.phone"
|
|
36
|
+
placeholder="方便我们联系您解决问题"
|
|
33
37
|
/>
|
|
34
38
|
</el-form-item>
|
|
35
39
|
</div>
|
|
36
40
|
<label class="upload-label">上传图片</label>
|
|
37
41
|
<div class="upload-section">
|
|
38
|
-
|
|
42
|
+
|
|
39
43
|
<div class="upload-row">
|
|
40
44
|
<el-upload
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
45
|
+
class="el-upload-feedback"
|
|
46
|
+
action="#"
|
|
47
|
+
:auto-upload="false"
|
|
48
|
+
:limit="1"
|
|
49
|
+
:on-change="onElUploadChange"
|
|
50
|
+
:before-upload="beforeElUpload"
|
|
51
|
+
:file-list="elFileList"
|
|
52
|
+
:show-file-list="true"
|
|
53
|
+
list-type="picture-card"
|
|
54
|
+
accept="image/*"
|
|
51
55
|
>
|
|
52
56
|
<i class="el-icon-plus"></i>
|
|
53
57
|
</el-upload>
|
|
@@ -64,17 +68,22 @@
|
|
|
64
68
|
</template>
|
|
65
69
|
|
|
66
70
|
<script>
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
71
|
+
import {Upload, Form, FormItem, Button} from 'element-ui';
|
|
72
|
+
import {submitFeedback} from '../../demo/api/index';
|
|
73
|
+
|
|
69
74
|
export default {
|
|
70
75
|
name: 'Feedback',
|
|
71
|
-
components: {
|
|
76
|
+
components: {Upload, ElForm: Form, ElFormItem: FormItem, ElButton: Button},
|
|
72
77
|
props: {
|
|
73
78
|
businessSource: {
|
|
74
79
|
type: String,
|
|
75
80
|
default: ''
|
|
76
|
-
|
|
77
|
-
|
|
81
|
+
},
|
|
82
|
+
navTopHeight: {
|
|
83
|
+
type: Number,
|
|
84
|
+
default: 0
|
|
85
|
+
},
|
|
86
|
+
},
|
|
78
87
|
data() {
|
|
79
88
|
return {
|
|
80
89
|
form: {
|
|
@@ -85,7 +94,7 @@ export default {
|
|
|
85
94
|
token: '',
|
|
86
95
|
rules: {
|
|
87
96
|
description: [
|
|
88
|
-
{
|
|
97
|
+
{required: true, message: '请输入问题描述', trigger: 'blur'},
|
|
89
98
|
],
|
|
90
99
|
phone: []
|
|
91
100
|
}
|
|
@@ -144,15 +153,17 @@ export default {
|
|
|
144
153
|
width: 100vw;
|
|
145
154
|
height: 100vh;
|
|
146
155
|
}
|
|
156
|
+
|
|
147
157
|
.feedback-mask {
|
|
148
158
|
position: absolute;
|
|
149
159
|
top: 0;
|
|
150
160
|
left: 0;
|
|
151
161
|
width: 100vw;
|
|
152
162
|
height: 100vh;
|
|
153
|
-
background: rgba(0,0,0,0.35);
|
|
163
|
+
background: rgba(0, 0, 0, 0.35);
|
|
154
164
|
z-index: 1;
|
|
155
165
|
}
|
|
166
|
+
|
|
156
167
|
.feedback-drawer {
|
|
157
168
|
position: fixed;
|
|
158
169
|
top: 0;
|
|
@@ -161,16 +172,18 @@ export default {
|
|
|
161
172
|
height: 100vh;
|
|
162
173
|
background: #eef2ff;
|
|
163
174
|
z-index: 2;
|
|
164
|
-
box-shadow: -2px 0 16px rgba(0,0,0,0.08);
|
|
175
|
+
box-shadow: -2px 0 16px rgba(0, 0, 0, 0.08);
|
|
165
176
|
border-radius: 0;
|
|
166
177
|
display: flex;
|
|
167
178
|
flex-direction: column;
|
|
168
179
|
transform: translateX(100vw);
|
|
169
|
-
transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
|
|
180
|
+
transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
|
|
170
181
|
}
|
|
182
|
+
|
|
171
183
|
.feedback-drawer.open {
|
|
172
184
|
transform: translateX(0);
|
|
173
185
|
}
|
|
186
|
+
|
|
174
187
|
.close-btn {
|
|
175
188
|
position: absolute;
|
|
176
189
|
top: -15px;
|
|
@@ -183,30 +196,36 @@ export default {
|
|
|
183
196
|
z-index: 10;
|
|
184
197
|
line-height: 1;
|
|
185
198
|
}
|
|
199
|
+
|
|
186
200
|
.feedback-header {
|
|
187
201
|
text-align: center;
|
|
188
202
|
margin: 24px 0 32px;
|
|
189
203
|
position: relative;
|
|
190
204
|
}
|
|
205
|
+
|
|
191
206
|
.header-icon-wrap {
|
|
192
207
|
display: flex;
|
|
193
208
|
justify-content: center;
|
|
194
209
|
margin-bottom: 12px;
|
|
195
210
|
}
|
|
211
|
+
|
|
196
212
|
.header-icon {
|
|
197
213
|
color: #7a8bff;
|
|
198
214
|
}
|
|
215
|
+
|
|
199
216
|
.feedback-header h2 {
|
|
200
217
|
font-size: 20px;
|
|
201
218
|
font-weight: 600;
|
|
202
219
|
color: #323233;
|
|
203
220
|
margin: 0 0 8px;
|
|
204
221
|
}
|
|
222
|
+
|
|
205
223
|
.feedback-header .subtitle {
|
|
206
224
|
font-size: 14px;
|
|
207
225
|
color: #8c8c8c;
|
|
208
226
|
margin: 0;
|
|
209
227
|
}
|
|
228
|
+
|
|
210
229
|
.feedback-form {
|
|
211
230
|
background: #fff;
|
|
212
231
|
border-radius: 12px;
|
|
@@ -214,14 +233,17 @@ export default {
|
|
|
214
233
|
padding: 20px;
|
|
215
234
|
margin: 0 16px 16px 16px;
|
|
216
235
|
}
|
|
236
|
+
|
|
217
237
|
.form-group {
|
|
218
238
|
margin-bottom: 18px;
|
|
219
239
|
}
|
|
240
|
+
|
|
220
241
|
.form-group label {
|
|
221
242
|
font-weight: 500;
|
|
222
243
|
color: #4a4a4a;
|
|
223
244
|
display: block;
|
|
224
245
|
}
|
|
246
|
+
|
|
225
247
|
.form-group textarea,
|
|
226
248
|
.form-group input {
|
|
227
249
|
width: 100%;
|
|
@@ -234,11 +256,13 @@ export default {
|
|
|
234
256
|
resize: none;
|
|
235
257
|
box-sizing: border-box;
|
|
236
258
|
}
|
|
259
|
+
|
|
237
260
|
.upload-section {
|
|
238
261
|
background-color: #ffffff;
|
|
239
262
|
border-radius: 12px;
|
|
240
263
|
box-shadow: 0 2px 12px rgba(100, 101, 102, 0.04);
|
|
241
264
|
}
|
|
265
|
+
|
|
242
266
|
.upload-header {
|
|
243
267
|
display: flex;
|
|
244
268
|
align-items: center;
|
|
@@ -247,15 +271,18 @@ export default {
|
|
|
247
271
|
font-weight: 500;
|
|
248
272
|
color: #4a4a4a;
|
|
249
273
|
}
|
|
274
|
+
|
|
250
275
|
.upload-tip {
|
|
251
276
|
margin-top: 12px;
|
|
252
277
|
font-size: 12px;
|
|
253
278
|
color: #8c8c8c;
|
|
254
279
|
text-align: center;
|
|
255
280
|
}
|
|
281
|
+
|
|
256
282
|
.submit-section {
|
|
257
283
|
margin: 32px 16px 0 16px;
|
|
258
284
|
}
|
|
285
|
+
|
|
259
286
|
.submit-button {
|
|
260
287
|
width: 100%;
|
|
261
288
|
height: 44px;
|
|
@@ -268,52 +295,68 @@ export default {
|
|
|
268
295
|
box-shadow: 0 4px 12px rgba(122, 139, 255, 0.3);
|
|
269
296
|
transition: all 0.3s;
|
|
270
297
|
}
|
|
298
|
+
|
|
271
299
|
.submit-button:active {
|
|
272
300
|
transform: translateY(1px);
|
|
273
301
|
box-shadow: 0 2px 8px rgba(122, 139, 255, 0.3);
|
|
274
302
|
}
|
|
303
|
+
|
|
275
304
|
.upload-label {
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
305
|
+
font-weight: 500;
|
|
306
|
+
color: #4a4a4a;
|
|
307
|
+
display: block;
|
|
308
|
+
line-height: 40px;
|
|
309
|
+
font-size: 14px;
|
|
281
310
|
}
|
|
311
|
+
|
|
282
312
|
.upload-row {
|
|
283
313
|
display: flex;
|
|
284
314
|
align-items: flex-start;
|
|
285
315
|
}
|
|
316
|
+
|
|
286
317
|
.el-upload-feedback {
|
|
287
318
|
margin-bottom: 8px;
|
|
288
319
|
display: flex;
|
|
289
320
|
align-items: center;
|
|
290
321
|
}
|
|
322
|
+
|
|
291
323
|
.el-upload-feedback .el-upload {
|
|
292
324
|
margin-right: 8px;
|
|
293
325
|
}
|
|
326
|
+
|
|
294
327
|
.el-upload-feedback .el-upload-list {
|
|
295
328
|
margin: 0;
|
|
296
329
|
display: flex;
|
|
297
330
|
flex-wrap: wrap;
|
|
298
331
|
}
|
|
332
|
+
|
|
299
333
|
.el-upload-feedback >>> .el-upload-list__item {
|
|
300
334
|
width: 100px !important;
|
|
301
335
|
height: 100px !important;
|
|
302
336
|
margin: 0 8px 0 0 !important;
|
|
303
337
|
}
|
|
338
|
+
|
|
304
339
|
.el-upload-feedback >>> .el-upload--picture-card {
|
|
305
340
|
width: 100px !important;
|
|
306
341
|
height: 100px !important;
|
|
307
342
|
line-height: 100px !important;
|
|
308
343
|
}
|
|
344
|
+
|
|
309
345
|
.el-upload-feedback >>> .el-upload-list__item-thumbnail {
|
|
310
346
|
width: 64px !important;
|
|
311
347
|
height: 64px !important;
|
|
312
348
|
object-fit: cover;
|
|
313
349
|
border-radius: 8px;
|
|
314
350
|
}
|
|
351
|
+
|
|
315
352
|
.el-upload-feedback >>> .el-icon-plus {
|
|
316
353
|
font-size: 24px !important;
|
|
317
354
|
line-height: 64px !important;
|
|
318
355
|
}
|
|
356
|
+
|
|
357
|
+
.nav-top-space {
|
|
358
|
+
width: 100%;
|
|
359
|
+
background: transparent;
|
|
360
|
+
flex-shrink: 0;
|
|
361
|
+
}
|
|
319
362
|
</style>
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
:modal="false"
|
|
55
55
|
:close-on-click-modal="false"
|
|
56
56
|
>
|
|
57
|
-
<feedback @close="showFeedback = false" :businessSource="businessSource"/>
|
|
57
|
+
<feedback @close="showFeedback = false" :businessSource="businessSource" :navTopHeight="navTopHeight"/>
|
|
58
58
|
</el-drawer>
|
|
59
59
|
</div>
|
|
60
60
|
</template>
|
|
@@ -6554,7 +6554,7 @@ if (typeof window !== 'undefined') {
|
|
|
6554
6554
|
// Indicate to webpack that this file can be concatenated
|
|
6555
6555
|
/* harmony default export */ var setPublicPath = (null);
|
|
6556
6556
|
|
|
6557
|
-
;// CONCATENATED MODULE: ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./components/demo/src/main.vue?vue&type=template&id=
|
|
6557
|
+
;// CONCATENATED MODULE: ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./components/demo/src/main.vue?vue&type=template&id=265b7039&scoped=true
|
|
6558
6558
|
var render = function render() {
|
|
6559
6559
|
var _vm = this,
|
|
6560
6560
|
_c = _vm._self._c;
|
|
@@ -6680,7 +6680,8 @@ var render = function render() {
|
|
|
6680
6680
|
}
|
|
6681
6681
|
}, [_c('feedback', {
|
|
6682
6682
|
attrs: {
|
|
6683
|
-
"businessSource": _vm.businessSource
|
|
6683
|
+
"businessSource": _vm.businessSource,
|
|
6684
|
+
"navTopHeight": _vm.navTopHeight
|
|
6684
6685
|
},
|
|
6685
6686
|
on: {
|
|
6686
6687
|
"close": function ($event) {
|
|
@@ -6691,7 +6692,7 @@ var render = function render() {
|
|
|
6691
6692
|
};
|
|
6692
6693
|
var staticRenderFns = [];
|
|
6693
6694
|
|
|
6694
|
-
;// CONCATENATED MODULE: ./components/demo/src/main.vue?vue&type=template&id=
|
|
6695
|
+
;// CONCATENATED MODULE: ./components/demo/src/main.vue?vue&type=template&id=265b7039&scoped=true
|
|
6695
6696
|
|
|
6696
6697
|
;// CONCATENATED MODULE: ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./components/demo/src/chat.vue?vue&type=template&id=5ba393d7&scoped=true
|
|
6697
6698
|
var chatvue_type_template_id_5ba393d7_scoped_true_render = function render() {
|
|
@@ -14673,8 +14674,8 @@ var chat_component = normalizeComponent(
|
|
|
14673
14674
|
)
|
|
14674
14675
|
|
|
14675
14676
|
/* harmony default export */ var chat = (chat_component.exports);
|
|
14676
|
-
;// CONCATENATED MODULE: ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./components/demo/src/feedback.vue?vue&type=template&id=
|
|
14677
|
-
var
|
|
14677
|
+
;// CONCATENATED MODULE: ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./components/demo/src/feedback.vue?vue&type=template&id=3d6f0967&scoped=true
|
|
14678
|
+
var feedbackvue_type_template_id_3d6f0967_scoped_true_render = function render() {
|
|
14678
14679
|
var _vm = this,
|
|
14679
14680
|
_c = _vm._self._c;
|
|
14680
14681
|
return _c('div', {
|
|
@@ -14692,6 +14693,11 @@ var feedbackvue_type_template_id_5fa02478_scoped_true_render = function render()
|
|
|
14692
14693
|
open: true
|
|
14693
14694
|
}
|
|
14694
14695
|
}, [_c('div', {
|
|
14696
|
+
staticClass: "nav-top-space",
|
|
14697
|
+
style: {
|
|
14698
|
+
height: (_vm.navTopHeight || 0) + 'px'
|
|
14699
|
+
}
|
|
14700
|
+
}), _c('div', {
|
|
14695
14701
|
staticClass: "feedback-header"
|
|
14696
14702
|
}, [_c('div', {
|
|
14697
14703
|
staticClass: "header-icon-wrap"
|
|
@@ -14835,7 +14841,7 @@ var feedbackvue_type_template_id_5fa02478_scoped_true_render = function render()
|
|
|
14835
14841
|
}
|
|
14836
14842
|
}, [_vm._v("提交反馈")])], 1)])])], 1)]);
|
|
14837
14843
|
};
|
|
14838
|
-
var
|
|
14844
|
+
var feedbackvue_type_template_id_3d6f0967_scoped_true_staticRenderFns = [];
|
|
14839
14845
|
|
|
14840
14846
|
;// CONCATENATED MODULE: ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./components/demo/src/feedback.vue?vue&type=script&lang=js
|
|
14841
14847
|
|
|
@@ -14852,6 +14858,10 @@ var feedbackvue_type_template_id_5fa02478_scoped_true_staticRenderFns = [];
|
|
|
14852
14858
|
businessSource: {
|
|
14853
14859
|
type: String,
|
|
14854
14860
|
default: ''
|
|
14861
|
+
},
|
|
14862
|
+
navTopHeight: {
|
|
14863
|
+
type: Number,
|
|
14864
|
+
default: 0
|
|
14855
14865
|
}
|
|
14856
14866
|
},
|
|
14857
14867
|
data() {
|
|
@@ -14916,10 +14926,10 @@ var feedbackvue_type_template_id_5fa02478_scoped_true_staticRenderFns = [];
|
|
|
14916
14926
|
});
|
|
14917
14927
|
;// CONCATENATED MODULE: ./components/demo/src/feedback.vue?vue&type=script&lang=js
|
|
14918
14928
|
/* harmony default export */ var src_feedbackvue_type_script_lang_js = (feedbackvue_type_script_lang_js);
|
|
14919
|
-
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-12.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./components/demo/src/feedback.vue?vue&type=style&index=0&id=
|
|
14929
|
+
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-12.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./components/demo/src/feedback.vue?vue&type=style&index=0&id=3d6f0967&prod&scoped=true&lang=css
|
|
14920
14930
|
// extracted by mini-css-extract-plugin
|
|
14921
14931
|
|
|
14922
|
-
;// CONCATENATED MODULE: ./components/demo/src/feedback.vue?vue&type=style&index=0&id=
|
|
14932
|
+
;// CONCATENATED MODULE: ./components/demo/src/feedback.vue?vue&type=style&index=0&id=3d6f0967&prod&scoped=true&lang=css
|
|
14923
14933
|
|
|
14924
14934
|
;// CONCATENATED MODULE: ./components/demo/src/feedback.vue
|
|
14925
14935
|
|
|
@@ -14932,11 +14942,11 @@ var feedbackvue_type_template_id_5fa02478_scoped_true_staticRenderFns = [];
|
|
|
14932
14942
|
|
|
14933
14943
|
var feedback_component = normalizeComponent(
|
|
14934
14944
|
src_feedbackvue_type_script_lang_js,
|
|
14935
|
-
|
|
14936
|
-
|
|
14945
|
+
feedbackvue_type_template_id_3d6f0967_scoped_true_render,
|
|
14946
|
+
feedbackvue_type_template_id_3d6f0967_scoped_true_staticRenderFns,
|
|
14937
14947
|
false,
|
|
14938
14948
|
null,
|
|
14939
|
-
"
|
|
14949
|
+
"3d6f0967",
|
|
14940
14950
|
null
|
|
14941
14951
|
|
|
14942
14952
|
)
|
|
@@ -15214,10 +15224,10 @@ var api = init(defaultConverter, { path: '/' });
|
|
|
15214
15224
|
});
|
|
15215
15225
|
;// CONCATENATED MODULE: ./components/demo/src/main.vue?vue&type=script&lang=js
|
|
15216
15226
|
/* harmony default export */ var src_mainvue_type_script_lang_js = (mainvue_type_script_lang_js);
|
|
15217
|
-
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./components/demo/src/main.vue?vue&type=style&index=0&id=
|
|
15227
|
+
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./components/demo/src/main.vue?vue&type=style&index=0&id=265b7039&prod&lang=scss&scoped=true
|
|
15218
15228
|
// extracted by mini-css-extract-plugin
|
|
15219
15229
|
|
|
15220
|
-
;// CONCATENATED MODULE: ./components/demo/src/main.vue?vue&type=style&index=0&id=
|
|
15230
|
+
;// CONCATENATED MODULE: ./components/demo/src/main.vue?vue&type=style&index=0&id=265b7039&prod&lang=scss&scoped=true
|
|
15221
15231
|
|
|
15222
15232
|
;// CONCATENATED MODULE: ./components/demo/src/main.vue
|
|
15223
15233
|
|
|
@@ -15234,7 +15244,7 @@ var main_component = normalizeComponent(
|
|
|
15234
15244
|
staticRenderFns,
|
|
15235
15245
|
false,
|
|
15236
15246
|
null,
|
|
15237
|
-
"
|
|
15247
|
+
"265b7039",
|
|
15238
15248
|
null
|
|
15239
15249
|
|
|
15240
15250
|
)
|