ai-error-assistant-pro 0.0.10 → 0.0.12
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/api/index.js +4 -0
- package/components/demo/src/chat.vue +55 -9
- package/components/demo/src/main.vue +4 -1
- package/dist/ai-error-assistant-pro.common.js +56 -23
- package/dist/ai-error-assistant-pro.common.js.map +1 -1
- package/dist/ai-error-assistant-pro.css +1 -1
- package/dist/ai-error-assistant-pro.umd.js +56 -23
- package/dist/ai-error-assistant-pro.umd.js.map +1 -1
- package/dist/ai-error-assistant-pro.umd.min.js +2 -2
- package/dist/ai-error-assistant-pro.umd.min.js.map +1 -1
- package/package.json +1 -1
|
@@ -7,6 +7,10 @@ let prefix = sessionStorage.getItem('AI-INTELLIGENT-TOOLS_PRE_FIX') || constants
|
|
|
7
7
|
|
|
8
8
|
// 0.0.7 版本接口升级
|
|
9
9
|
prefix += '/plugin/v2';
|
|
10
|
+
|
|
11
|
+
// export const pdfUrlBase = 'https://testagent.icve.com.cn';
|
|
12
|
+
export const pdfUrlBase = 'https://agent.icve.com.cn';
|
|
13
|
+
export const pdfUrl = pdfUrlBase + '/ossurl';
|
|
10
14
|
export const ssoAuth = (token, businessSource) => {
|
|
11
15
|
return request({
|
|
12
16
|
url: prefix + '/sso/assistant',
|
|
@@ -11,15 +11,33 @@
|
|
|
11
11
|
<div v-else class="robot user">user</div>
|
|
12
12
|
<div :class="{'user-info': list.type === 'user'}" class="robot-message">
|
|
13
13
|
<div v-html="list.message"></div>
|
|
14
|
-
<div v-if="list.type === 'robot' && list.links.length > 0" class="link">
|
|
14
|
+
<div v-if="list.type === 'robot' && list.links.length > 0 && showFile" class="link">
|
|
15
15
|
<div v-if="!list.allIdWithStart">
|
|
16
16
|
<div class="link-title">参考文件</div>
|
|
17
17
|
<div class="link-content">
|
|
18
18
|
<template v-for="item in list.links">
|
|
19
19
|
<div class="links" v-if="!item.title.startsWith(chatMajorId)">
|
|
20
|
-
<
|
|
21
|
-
<span
|
|
22
|
-
|
|
20
|
+
<span>{{ `《${item.title}》` }} 共
|
|
21
|
+
<span style="font-weight: bold">
|
|
22
|
+
{{ item.fileDTOS.length }}
|
|
23
|
+
</span>
|
|
24
|
+
处引用
|
|
25
|
+
</span>
|
|
26
|
+
</div>
|
|
27
|
+
<div
|
|
28
|
+
v-for="(pdf, index) in item.fileDTOS"
|
|
29
|
+
class="link-part-container"
|
|
30
|
+
:key="index"
|
|
31
|
+
>
|
|
32
|
+
<span class="link-list-part">
|
|
33
|
+
{{ pdf.matchContent }}
|
|
34
|
+
</span>
|
|
35
|
+
<span
|
|
36
|
+
class="link-list-button"
|
|
37
|
+
@click="seeDetail(pdf, item.documentUrl)"
|
|
38
|
+
>
|
|
39
|
+
点击查看
|
|
40
|
+
</span>
|
|
23
41
|
</div>
|
|
24
42
|
</template>
|
|
25
43
|
</div>
|
|
@@ -65,7 +83,7 @@ import { errorList } from '../utils/config';
|
|
|
65
83
|
import ChatTools from './chat-tools.vue';
|
|
66
84
|
import ErrorChat from './error-chat.vue';
|
|
67
85
|
import { marked } from 'marked';
|
|
68
|
-
import { chartClear, sendMessageEventSource, getAutoQuestioning } from "../api";
|
|
86
|
+
import { chartClear, sendMessageEventSource, getAutoQuestioning, pdfUrl, pdfUrlBase } from "../api";
|
|
69
87
|
const controller = new AbortController();
|
|
70
88
|
const signal = controller.signal;
|
|
71
89
|
|
|
@@ -93,6 +111,10 @@ export default {
|
|
|
93
111
|
type: Boolean,
|
|
94
112
|
default: false,
|
|
95
113
|
},
|
|
114
|
+
showFile: {
|
|
115
|
+
type: Boolean,
|
|
116
|
+
default: false,
|
|
117
|
+
},
|
|
96
118
|
},
|
|
97
119
|
data() {
|
|
98
120
|
return {
|
|
@@ -297,7 +319,7 @@ export default {
|
|
|
297
319
|
}
|
|
298
320
|
const obj = {
|
|
299
321
|
type: list.role === 'assistant' ? 'robot' : 'user',
|
|
300
|
-
message: list.role === 'assistant' ? marked.parse(list.content) : list.content.replace(/\n/g, '<br>'),
|
|
322
|
+
message: list.role === 'assistant' ? marked.parse(list.content || '') : list.content.replace(/\n/g, '<br>'),
|
|
301
323
|
zan: list.type === 1,
|
|
302
324
|
cai: list.type === 2,
|
|
303
325
|
stop: list.status === 1,
|
|
@@ -316,7 +338,13 @@ export default {
|
|
|
316
338
|
}else {
|
|
317
339
|
this.messageData = [];
|
|
318
340
|
}
|
|
319
|
-
}
|
|
341
|
+
},
|
|
342
|
+
seeDetail(pdfInfo, url){
|
|
343
|
+
console.log(1234);
|
|
344
|
+
const { pageIndex } = pdfInfo;
|
|
345
|
+
const baseUrl = `${pdfUrlBase}/#/pdf-view?documentUrl=${pdfUrl}${encodeURIComponent(url)}&pageIndex=${pageIndex}`;
|
|
346
|
+
window.open(baseUrl, '_blank');
|
|
347
|
+
},
|
|
320
348
|
},
|
|
321
349
|
}
|
|
322
350
|
</script>
|
|
@@ -386,7 +414,8 @@ export default {
|
|
|
386
414
|
}
|
|
387
415
|
|
|
388
416
|
.robot-message {
|
|
389
|
-
width: 100%;
|
|
417
|
+
//width: 100%;
|
|
418
|
+
width: calc(100% - 120px);
|
|
390
419
|
background-color: rgba(255, 255, 255, 1);
|
|
391
420
|
border-radius: 12px;
|
|
392
421
|
border-top-left-radius: 0;
|
|
@@ -410,7 +439,7 @@ export default {
|
|
|
410
439
|
background: #fafafd;
|
|
411
440
|
border-radius: 8px;
|
|
412
441
|
padding: 8px;
|
|
413
|
-
max-height: 170px;
|
|
442
|
+
//max-height: 170px;
|
|
414
443
|
overflow: auto;
|
|
415
444
|
|
|
416
445
|
.links {
|
|
@@ -458,4 +487,21 @@ export default {
|
|
|
458
487
|
background-color: rgba(96, 96, 224, 0.24);
|
|
459
488
|
}
|
|
460
489
|
}
|
|
490
|
+
.link-part-container {
|
|
491
|
+
display: flex;
|
|
492
|
+
padding: 5px;
|
|
493
|
+
.link-list-part {
|
|
494
|
+
width: calc(100% - 64px);
|
|
495
|
+
font-size: 13px;
|
|
496
|
+
overflow: hidden; /* 隐藏超出的内容 */
|
|
497
|
+
white-space: nowrap; /* 不换行 */
|
|
498
|
+
text-overflow: ellipsis; /* 超出部分用省略号表示 */
|
|
499
|
+
}
|
|
500
|
+
.link-list-button {
|
|
501
|
+
font-size: 13px;
|
|
502
|
+
width: 64px;
|
|
503
|
+
color: #1677ff;
|
|
504
|
+
cursor: pointer;
|
|
505
|
+
}
|
|
506
|
+
}
|
|
461
507
|
</style>
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
:resId="resId"
|
|
20
20
|
:xtId="xtId"
|
|
21
21
|
:show-more-q-a="showMoreQA"
|
|
22
|
+
:show-file="showFile"
|
|
22
23
|
:key-word="aiMessageKeyWord"
|
|
23
24
|
:analy-exercise="analyExercise"
|
|
24
25
|
@on-reanser="reanserMethod"
|
|
@@ -90,6 +91,7 @@ export default {
|
|
|
90
91
|
courseFlag: false,
|
|
91
92
|
message:'',
|
|
92
93
|
showMoreQA: false,
|
|
94
|
+
showFile: false,
|
|
93
95
|
}
|
|
94
96
|
},
|
|
95
97
|
async mounted() {
|
|
@@ -99,8 +101,9 @@ export default {
|
|
|
99
101
|
getUserInfo(Cookies.get("token"), this.businessSource);
|
|
100
102
|
const wordRes = await queryCallWord(this.resId);
|
|
101
103
|
if (!wordRes) return;
|
|
102
|
-
const { showMoreQA } = wordRes;
|
|
104
|
+
const { showMoreQA, isShowFile } = wordRes;
|
|
103
105
|
this.showMoreQA = showMoreQA;
|
|
106
|
+
this.showFile = !!isShowFile;
|
|
104
107
|
},
|
|
105
108
|
methods: {
|
|
106
109
|
closeMessage() {
|
|
@@ -6546,7 +6546,7 @@ if (typeof window !== 'undefined') {
|
|
|
6546
6546
|
// Indicate to webpack that this file can be concatenated
|
|
6547
6547
|
/* harmony default export */ var setPublicPath = (null);
|
|
6548
6548
|
|
|
6549
|
-
;// 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=
|
|
6549
|
+
;// 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=2440bc18&scoped=true
|
|
6550
6550
|
var render = function render() {
|
|
6551
6551
|
var _vm = this,
|
|
6552
6552
|
_c = _vm._self._c;
|
|
@@ -6575,6 +6575,7 @@ var render = function render() {
|
|
|
6575
6575
|
"resId": _vm.resId,
|
|
6576
6576
|
"xtId": _vm.xtId,
|
|
6577
6577
|
"show-more-q-a": _vm.showMoreQA,
|
|
6578
|
+
"show-file": _vm.showFile,
|
|
6578
6579
|
"key-word": _vm.aiMessageKeyWord,
|
|
6579
6580
|
"analy-exercise": _vm.analyExercise
|
|
6580
6581
|
},
|
|
@@ -6644,10 +6645,10 @@ var staticRenderFns = [function () {
|
|
|
6644
6645
|
}, [_vm._v("智能解析")])]);
|
|
6645
6646
|
}];
|
|
6646
6647
|
|
|
6647
|
-
;// CONCATENATED MODULE: ./components/demo/src/main.vue?vue&type=template&id=
|
|
6648
|
+
;// CONCATENATED MODULE: ./components/demo/src/main.vue?vue&type=template&id=2440bc18&scoped=true
|
|
6648
6649
|
|
|
6649
|
-
;// 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=
|
|
6650
|
-
var
|
|
6650
|
+
;// 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=ea6e5e5a&scoped=true
|
|
6651
|
+
var chatvue_type_template_id_ea6e5e5a_scoped_true_render = function render() {
|
|
6651
6652
|
var _vm = this,
|
|
6652
6653
|
_c = _vm._self._c;
|
|
6653
6654
|
return _c('div', {
|
|
@@ -6682,7 +6683,7 @@ var chatvue_type_template_id_87eb3e4e_scoped_true_render = function render() {
|
|
|
6682
6683
|
domProps: {
|
|
6683
6684
|
"innerHTML": _vm._s(list.message)
|
|
6684
6685
|
}
|
|
6685
|
-
}), list.type === 'robot' && list.links.length > 0 ? _c('div', {
|
|
6686
|
+
}), list.type === 'robot' && list.links.length > 0 && _vm.showFile ? _c('div', {
|
|
6686
6687
|
staticClass: "link"
|
|
6687
6688
|
}, [!list.allIdWithStart ? _c('div', [_c('div', {
|
|
6688
6689
|
staticClass: "link-title"
|
|
@@ -6691,12 +6692,25 @@ var chatvue_type_template_id_87eb3e4e_scoped_true_render = function render() {
|
|
|
6691
6692
|
}, [_vm._l(list.links, function (item) {
|
|
6692
6693
|
return [!item.title.startsWith(_vm.chatMajorId) ? _c('div', {
|
|
6693
6694
|
staticClass: "links"
|
|
6694
|
-
}, [_c('
|
|
6695
|
-
|
|
6696
|
-
"
|
|
6697
|
-
|
|
6698
|
-
|
|
6699
|
-
|
|
6695
|
+
}, [_c('span', [_vm._v(_vm._s(`《${item.title}》`) + " 共 "), _c('span', {
|
|
6696
|
+
staticStyle: {
|
|
6697
|
+
"font-weight": "bold"
|
|
6698
|
+
}
|
|
6699
|
+
}, [_vm._v(" " + _vm._s(item.fileDTOS.length) + " ")]), _vm._v(" 处引用 ")])]) : _vm._e(), _vm._l(item.fileDTOS, function (pdf, index) {
|
|
6700
|
+
return _c('div', {
|
|
6701
|
+
key: index,
|
|
6702
|
+
staticClass: "link-part-container"
|
|
6703
|
+
}, [_c('span', {
|
|
6704
|
+
staticClass: "link-list-part"
|
|
6705
|
+
}, [_vm._v(" " + _vm._s(pdf.matchContent) + " ")]), _c('span', {
|
|
6706
|
+
staticClass: "link-list-button",
|
|
6707
|
+
on: {
|
|
6708
|
+
"click": function ($event) {
|
|
6709
|
+
return _vm.seeDetail(pdf, item.documentUrl);
|
|
6710
|
+
}
|
|
6711
|
+
}
|
|
6712
|
+
}, [_vm._v(" 点击查看 ")])]);
|
|
6713
|
+
})];
|
|
6700
6714
|
})], 2)]) : _vm._e()]) : _vm._e(), list.type === 'robot' && list.connectUrl.length > 0 ? _c('div', {
|
|
6701
6715
|
staticClass: "link"
|
|
6702
6716
|
}, [_c('div', {
|
|
@@ -6742,7 +6756,7 @@ var chatvue_type_template_id_87eb3e4e_scoped_true_render = function render() {
|
|
|
6742
6756
|
}) : _vm._e()], 1)]);
|
|
6743
6757
|
})], 2);
|
|
6744
6758
|
};
|
|
6745
|
-
var
|
|
6759
|
+
var chatvue_type_template_id_ea6e5e5a_scoped_true_staticRenderFns = [];
|
|
6746
6760
|
|
|
6747
6761
|
;// CONCATENATED MODULE: ./node_modules/axios/lib/helpers/bind.js
|
|
6748
6762
|
|
|
@@ -10884,6 +10898,10 @@ let prefix = sessionStorage.getItem('AI-INTELLIGENT-TOOLS_PRE_FIX') || constants
|
|
|
10884
10898
|
|
|
10885
10899
|
// 0.0.7 版本接口升级
|
|
10886
10900
|
prefix += '/plugin/v2';
|
|
10901
|
+
|
|
10902
|
+
// export const pdfUrlBase = 'https://testagent.icve.com.cn';
|
|
10903
|
+
const pdfUrlBase = 'https://agent.icve.com.cn';
|
|
10904
|
+
const pdfUrl = pdfUrlBase + '/ossurl';
|
|
10887
10905
|
const ssoAuth = (token, businessSource) => {
|
|
10888
10906
|
return utils_request({
|
|
10889
10907
|
url: prefix + '/sso/assistant',
|
|
@@ -14288,6 +14306,10 @@ const signal = controller.signal;
|
|
|
14288
14306
|
showMoreQA: {
|
|
14289
14307
|
type: Boolean,
|
|
14290
14308
|
default: false
|
|
14309
|
+
},
|
|
14310
|
+
showFile: {
|
|
14311
|
+
type: Boolean,
|
|
14312
|
+
default: false
|
|
14291
14313
|
}
|
|
14292
14314
|
},
|
|
14293
14315
|
data() {
|
|
@@ -14505,7 +14527,7 @@ const signal = controller.signal;
|
|
|
14505
14527
|
}
|
|
14506
14528
|
const obj = {
|
|
14507
14529
|
type: list.role === 'assistant' ? 'robot' : 'user',
|
|
14508
|
-
message: list.role === 'assistant' ? marked.parse(list.content) : list.content.replace(/\n/g, '<br>'),
|
|
14530
|
+
message: list.role === 'assistant' ? marked.parse(list.content || '') : list.content.replace(/\n/g, '<br>'),
|
|
14509
14531
|
zan: list.type === 1,
|
|
14510
14532
|
cai: list.type === 2,
|
|
14511
14533
|
stop: list.status === 1,
|
|
@@ -14524,15 +14546,23 @@ const signal = controller.signal;
|
|
|
14524
14546
|
} else {
|
|
14525
14547
|
this.messageData = [];
|
|
14526
14548
|
}
|
|
14549
|
+
},
|
|
14550
|
+
seeDetail(pdfInfo, url) {
|
|
14551
|
+
console.log(1234);
|
|
14552
|
+
const {
|
|
14553
|
+
pageIndex
|
|
14554
|
+
} = pdfInfo;
|
|
14555
|
+
const baseUrl = `${pdfUrlBase}/#/pdf-view?documentUrl=${pdfUrl}${encodeURIComponent(url)}&pageIndex=${pageIndex}`;
|
|
14556
|
+
window.open(baseUrl, '_blank');
|
|
14527
14557
|
}
|
|
14528
14558
|
}
|
|
14529
14559
|
});
|
|
14530
14560
|
;// CONCATENATED MODULE: ./components/demo/src/chat.vue?vue&type=script&lang=js
|
|
14531
14561
|
/* harmony default export */ var src_chatvue_type_script_lang_js = (chatvue_type_script_lang_js);
|
|
14532
|
-
;// 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/chat.vue?vue&type=style&index=0&id=
|
|
14562
|
+
;// 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/chat.vue?vue&type=style&index=0&id=ea6e5e5a&prod&lang=scss&scoped=true
|
|
14533
14563
|
// extracted by mini-css-extract-plugin
|
|
14534
14564
|
|
|
14535
|
-
;// CONCATENATED MODULE: ./components/demo/src/chat.vue?vue&type=style&index=0&id=
|
|
14565
|
+
;// CONCATENATED MODULE: ./components/demo/src/chat.vue?vue&type=style&index=0&id=ea6e5e5a&prod&lang=scss&scoped=true
|
|
14536
14566
|
|
|
14537
14567
|
;// CONCATENATED MODULE: ./components/demo/src/chat.vue
|
|
14538
14568
|
|
|
@@ -14545,11 +14575,11 @@ const signal = controller.signal;
|
|
|
14545
14575
|
|
|
14546
14576
|
var chat_component = normalizeComponent(
|
|
14547
14577
|
src_chatvue_type_script_lang_js,
|
|
14548
|
-
|
|
14549
|
-
|
|
14578
|
+
chatvue_type_template_id_ea6e5e5a_scoped_true_render,
|
|
14579
|
+
chatvue_type_template_id_ea6e5e5a_scoped_true_staticRenderFns,
|
|
14550
14580
|
false,
|
|
14551
14581
|
null,
|
|
14552
|
-
"
|
|
14582
|
+
"ea6e5e5a",
|
|
14553
14583
|
null
|
|
14554
14584
|
|
|
14555
14585
|
)
|
|
@@ -14740,7 +14770,8 @@ var api = init(defaultConverter, { path: '/' });
|
|
|
14740
14770
|
stop: false,
|
|
14741
14771
|
courseFlag: false,
|
|
14742
14772
|
message: '',
|
|
14743
|
-
showMoreQA: false
|
|
14773
|
+
showMoreQA: false,
|
|
14774
|
+
showFile: false
|
|
14744
14775
|
};
|
|
14745
14776
|
},
|
|
14746
14777
|
async mounted() {
|
|
@@ -14751,9 +14782,11 @@ var api = init(defaultConverter, { path: '/' });
|
|
|
14751
14782
|
const wordRes = await queryCallWord(this.resId);
|
|
14752
14783
|
if (!wordRes) return;
|
|
14753
14784
|
const {
|
|
14754
|
-
showMoreQA
|
|
14785
|
+
showMoreQA,
|
|
14786
|
+
isShowFile
|
|
14755
14787
|
} = wordRes;
|
|
14756
14788
|
this.showMoreQA = showMoreQA;
|
|
14789
|
+
this.showFile = !!isShowFile;
|
|
14757
14790
|
},
|
|
14758
14791
|
methods: {
|
|
14759
14792
|
closeMessage() {
|
|
@@ -14806,10 +14839,10 @@ var api = init(defaultConverter, { path: '/' });
|
|
|
14806
14839
|
});
|
|
14807
14840
|
;// CONCATENATED MODULE: ./components/demo/src/main.vue?vue&type=script&lang=js
|
|
14808
14841
|
/* harmony default export */ var src_mainvue_type_script_lang_js = (mainvue_type_script_lang_js);
|
|
14809
|
-
;// 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=
|
|
14842
|
+
;// 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=2440bc18&prod&lang=scss&scoped=true
|
|
14810
14843
|
// extracted by mini-css-extract-plugin
|
|
14811
14844
|
|
|
14812
|
-
;// CONCATENATED MODULE: ./components/demo/src/main.vue?vue&type=style&index=0&id=
|
|
14845
|
+
;// CONCATENATED MODULE: ./components/demo/src/main.vue?vue&type=style&index=0&id=2440bc18&prod&lang=scss&scoped=true
|
|
14813
14846
|
|
|
14814
14847
|
;// CONCATENATED MODULE: ./components/demo/src/main.vue
|
|
14815
14848
|
|
|
@@ -14826,7 +14859,7 @@ var main_component = normalizeComponent(
|
|
|
14826
14859
|
staticRenderFns,
|
|
14827
14860
|
false,
|
|
14828
14861
|
null,
|
|
14829
|
-
"
|
|
14862
|
+
"2440bc18",
|
|
14830
14863
|
null
|
|
14831
14864
|
|
|
14832
14865
|
)
|