ai-error-assistant-pro 0.0.1 → 0.0.2
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 +3 -2
- package/components/demo/src/chat.vue +5 -4
- package/components/demo/src/main.vue +14 -4
- package/components/demo/utils/constants.js +2 -0
- package/components/demo/utils/request.js +3 -2
- package/dist/ai-error-assistant-pro.common.js +46 -36
- 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 +51 -41
- package/dist/ai-error-assistant-pro.umd.js.map +1 -1
- package/dist/ai-error-assistant-pro.umd.min.js +3 -3
- package/dist/ai-error-assistant-pro.umd.min.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import request from '../utils/request'
|
|
2
2
|
import { fetchEventSource } from '@microsoft/fetch-event-source';
|
|
3
|
-
|
|
4
|
-
const
|
|
3
|
+
import constants from '../utils/constants';
|
|
4
|
+
const baseURL = sessionStorage.getItem('AI-INTELLIGENT-TOOLS_BASE_URL') || constants.publicPath;
|
|
5
|
+
const prefix = sessionStorage.getItem('AI-INTELLIGENT-TOOLS_PRE_FIX') || constants.publicPrefix;
|
|
5
6
|
import cache from '../plugins/cache';
|
|
6
7
|
export const ssoAuth = (token) => {
|
|
7
8
|
return request({
|
|
@@ -96,7 +96,7 @@ export default {
|
|
|
96
96
|
scrollToBottom() {
|
|
97
97
|
this.$refs.chatContainer.scrollTop = this.$refs.chatContainer.scrollHeight;
|
|
98
98
|
},
|
|
99
|
-
async postMessage(list, commonKey) {
|
|
99
|
+
async postMessage(list, commonKey, parentMsgId) {
|
|
100
100
|
let reanswerParams = {};
|
|
101
101
|
if (list) {
|
|
102
102
|
reanswerParams = {
|
|
@@ -114,13 +114,14 @@ export default {
|
|
|
114
114
|
resId: this.resId,
|
|
115
115
|
chatId: this.chatId || undefined,
|
|
116
116
|
commonKey: commonKey || false,
|
|
117
|
+
parentMsgId: parentMsgId || undefined,
|
|
117
118
|
...reanswerParams,
|
|
118
119
|
}
|
|
119
120
|
]
|
|
120
121
|
};
|
|
121
122
|
// list 存在说明是重新生成
|
|
122
123
|
if (!list && !commonKey) {
|
|
123
|
-
this.messageData.push({ type: 'user', message: this.keyWord });
|
|
124
|
+
this.messageData.push({ type: 'user', message: this.keyWord.replace(/\n/g, '<br>') });
|
|
124
125
|
setTimeout(() => this.messageData.push(
|
|
125
126
|
{
|
|
126
127
|
type: 'robot',
|
|
@@ -145,7 +146,7 @@ export default {
|
|
|
145
146
|
// 结束标识
|
|
146
147
|
if (status === 2 || status === 1) {
|
|
147
148
|
if (commonKey) {
|
|
148
|
-
this.postMessage(list, commonKey);
|
|
149
|
+
this.postMessage(list, commonKey, parentMsgId);
|
|
149
150
|
return;
|
|
150
151
|
}
|
|
151
152
|
currentList.finish = true;
|
|
@@ -190,7 +191,7 @@ export default {
|
|
|
190
191
|
list[0].contents.reverse().map((list) => {
|
|
191
192
|
const obj = {
|
|
192
193
|
type: list.role === 'assistant' ? 'robot' : 'user',
|
|
193
|
-
message: list.content,
|
|
194
|
+
message: list.content.replace(/\n/g, '<br>'),
|
|
194
195
|
zan: list.type === 1,
|
|
195
196
|
cai: list.type === 2,
|
|
196
197
|
stop: list.status === 1,
|
|
@@ -23,7 +23,10 @@
|
|
|
23
23
|
<span @click="clearChat">清空对话</span>
|
|
24
24
|
</div>
|
|
25
25
|
<div class="ai-message-send" @keyup.enter="goChat">
|
|
26
|
-
<el-input v-model="aiMessage"
|
|
26
|
+
<el-input v-model="aiMessage"
|
|
27
|
+
placeholder="可以提出问题..."
|
|
28
|
+
type="textarea"
|
|
29
|
+
:rows="2"></el-input>
|
|
27
30
|
<div class="ai-send-icon" @click="goChat">
|
|
28
31
|
<img src="../static/send-icon.png" alt="" style="width: 24px; height: 24px">
|
|
29
32
|
</div>
|
|
@@ -81,7 +84,10 @@ export default {
|
|
|
81
84
|
}
|
|
82
85
|
this.$refs.chatRef.clearChat();
|
|
83
86
|
},
|
|
84
|
-
goChat() {
|
|
87
|
+
goChat(event) {
|
|
88
|
+
if (event.shiftKey) {
|
|
89
|
+
return;
|
|
90
|
+
}
|
|
85
91
|
if (!this.stopMessage()) {
|
|
86
92
|
return;
|
|
87
93
|
}
|
|
@@ -204,17 +210,21 @@ export default {
|
|
|
204
210
|
}
|
|
205
211
|
:deep {
|
|
206
212
|
.ai-message-send {
|
|
207
|
-
.el-
|
|
213
|
+
.el-textarea__inner {
|
|
208
214
|
height: 60px;
|
|
209
215
|
font-size: 16px;
|
|
216
|
+
resize: none;
|
|
210
217
|
color: rgba(51,51,51,.75);
|
|
211
218
|
border: 0;
|
|
212
219
|
border-radius: 40px;
|
|
213
220
|
background: linear-gradient(to bottom, #fff, #d8f0fb);
|
|
214
|
-
padding: 0 24px;
|
|
221
|
+
padding: 8px 24px 0 24px;
|
|
215
222
|
&::placeholder {
|
|
216
223
|
color: rgba(51,51,51,.75);
|
|
217
224
|
}
|
|
225
|
+
&::-webkit-scrollbar {
|
|
226
|
+
width: 0 !important; /* 针对 WebKit 浏览器 */
|
|
227
|
+
}
|
|
218
228
|
}
|
|
219
229
|
}
|
|
220
230
|
}
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import axios from 'axios'
|
|
2
2
|
import cache from '../plugins/cache'
|
|
3
3
|
import { Message } from 'element-ui'
|
|
4
|
-
const door = sessionStorage.getItem('
|
|
4
|
+
const door = sessionStorage.getItem('AI-INTELLIGENT-TOOLS_BASE_URL');
|
|
5
5
|
import { decrypt } from './aes-utils';
|
|
6
|
+
import constants from '../utils/constants';
|
|
6
7
|
|
|
7
8
|
axios.defaults.headers['Content-Type'] = 'application/json;charset=utf-8'
|
|
8
9
|
|
|
9
10
|
const service = axios.create({
|
|
10
11
|
// axios中请求配置有baseURL选项,表示请求URL公共部分
|
|
11
|
-
baseURL: door ||
|
|
12
|
+
baseURL: door || constants.publicPath,
|
|
12
13
|
// 超时
|
|
13
14
|
timeout: 80000
|
|
14
15
|
})
|
|
@@ -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=98bac9ca&scoped=true
|
|
6550
6550
|
var render = function render() {
|
|
6551
6551
|
var _vm = this,
|
|
6552
6552
|
_c = _vm._self._c;
|
|
@@ -6593,7 +6593,9 @@ var render = function render() {
|
|
|
6593
6593
|
}
|
|
6594
6594
|
}, [_c('el-input', {
|
|
6595
6595
|
attrs: {
|
|
6596
|
-
"placeholder": "可以提出问题..."
|
|
6596
|
+
"placeholder": "可以提出问题...",
|
|
6597
|
+
"type": "textarea",
|
|
6598
|
+
"rows": 2
|
|
6597
6599
|
},
|
|
6598
6600
|
model: {
|
|
6599
6601
|
value: _vm.aiMessage,
|
|
@@ -6639,10 +6641,10 @@ var staticRenderFns = [function () {
|
|
|
6639
6641
|
}, [_vm._v("智能解析")])]);
|
|
6640
6642
|
}];
|
|
6641
6643
|
|
|
6642
|
-
;// CONCATENATED MODULE: ./components/demo/src/main.vue?vue&type=template&id=
|
|
6644
|
+
;// CONCATENATED MODULE: ./components/demo/src/main.vue?vue&type=template&id=98bac9ca&scoped=true
|
|
6643
6645
|
|
|
6644
|
-
;// 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=
|
|
6645
|
-
var
|
|
6646
|
+
;// 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=311af3d2&scoped=true
|
|
6647
|
+
var chatvue_type_template_id_311af3d2_scoped_true_render = function render() {
|
|
6646
6648
|
var _vm = this,
|
|
6647
6649
|
_c = _vm._self._c;
|
|
6648
6650
|
return _c('div', {
|
|
@@ -6704,7 +6706,7 @@ var chatvue_type_template_id_3ed5ec0e_scoped_true_render = function render() {
|
|
|
6704
6706
|
}) : _vm._e()], 1)]);
|
|
6705
6707
|
})], 2);
|
|
6706
6708
|
};
|
|
6707
|
-
var
|
|
6709
|
+
var chatvue_type_template_id_311af3d2_scoped_true_staticRenderFns = [];
|
|
6708
6710
|
|
|
6709
6711
|
;// CONCATENATED MODULE: ./node_modules/axios/lib/helpers/bind.js
|
|
6710
6712
|
|
|
@@ -10492,16 +10494,32 @@ function decrypt(word) {
|
|
|
10492
10494
|
let decryptedStr = decrypt.toString((crypto_js_default()).enc.Utf8);
|
|
10493
10495
|
return decryptedStr.toString();
|
|
10494
10496
|
}
|
|
10497
|
+
;// CONCATENATED MODULE: ./components/demo/utils/constants.js
|
|
10498
|
+
let appId = '601a39a2a4a7cd88d5ddcef5';
|
|
10499
|
+
const whiteList = ['/home', '/overview'];
|
|
10500
|
+
if (({"NODE_ENV":"production","BASE_URL":""}).VITE_APP_BUILD_TYPE === 'aliyun') {
|
|
10501
|
+
appId = '6572ba195ec962924cc39951';
|
|
10502
|
+
}
|
|
10503
|
+
/* harmony default export */ var constants = ({
|
|
10504
|
+
'X-Enterprise-Id': 'www.hep-zj.com.cn',
|
|
10505
|
+
'X-App-Id': '90403a27c0704259ab7a3c8aab4489b3',
|
|
10506
|
+
'X-App-Secret': 'bc11ce7c44824fcaa23ff301a54b7094',
|
|
10507
|
+
appId,
|
|
10508
|
+
whiteList,
|
|
10509
|
+
publicPath: 'https://agent.icve.com.cn/heatp-portal/do/',
|
|
10510
|
+
publicPrefix: '/heatp'
|
|
10511
|
+
});
|
|
10495
10512
|
;// CONCATENATED MODULE: ./components/demo/utils/request.js
|
|
10496
10513
|
|
|
10497
10514
|
|
|
10498
10515
|
|
|
10499
|
-
const door = sessionStorage.getItem('
|
|
10516
|
+
const door = sessionStorage.getItem('AI-INTELLIGENT-TOOLS_BASE_URL');
|
|
10517
|
+
|
|
10500
10518
|
|
|
10501
10519
|
lib_axios.defaults.headers['Content-Type'] = 'application/json;charset=utf-8';
|
|
10502
10520
|
const service = lib_axios.create({
|
|
10503
10521
|
// axios中请求配置有baseURL选项,表示请求URL公共部分
|
|
10504
|
-
baseURL: door ||
|
|
10522
|
+
baseURL: door || constants.publicPath,
|
|
10505
10523
|
// 超时
|
|
10506
10524
|
timeout: 80000
|
|
10507
10525
|
});
|
|
@@ -10760,8 +10778,9 @@ function defaultOnOpen(response) {
|
|
|
10760
10778
|
;// CONCATENATED MODULE: ./components/demo/api/index.js
|
|
10761
10779
|
|
|
10762
10780
|
|
|
10763
|
-
|
|
10764
|
-
const
|
|
10781
|
+
|
|
10782
|
+
const baseURL = sessionStorage.getItem('AI-INTELLIGENT-TOOLS_BASE_URL') || constants.publicPath;
|
|
10783
|
+
const prefix = sessionStorage.getItem('AI-INTELLIGENT-TOOLS_PRE_FIX') || constants.publicPrefix;
|
|
10765
10784
|
|
|
10766
10785
|
const ssoAuth = token => {
|
|
10767
10786
|
return request({
|
|
@@ -10834,19 +10853,6 @@ async function sendMessageEventSource(params, signal, onmessage) {
|
|
|
10834
10853
|
onmessage
|
|
10835
10854
|
});
|
|
10836
10855
|
}
|
|
10837
|
-
;// CONCATENATED MODULE: ./components/demo/utils/constants.js
|
|
10838
|
-
let appId = '601a39a2a4a7cd88d5ddcef5';
|
|
10839
|
-
const whiteList = ['/home', '/overview'];
|
|
10840
|
-
if (({"NODE_ENV":"production","BASE_URL":""}).VITE_APP_BUILD_TYPE === 'aliyun') {
|
|
10841
|
-
appId = '6572ba195ec962924cc39951';
|
|
10842
|
-
}
|
|
10843
|
-
/* harmony default export */ var constants = ({
|
|
10844
|
-
'X-Enterprise-Id': 'www.hep-zj.com.cn',
|
|
10845
|
-
'X-App-Id': '90403a27c0704259ab7a3c8aab4489b3',
|
|
10846
|
-
'X-App-Secret': 'bc11ce7c44824fcaa23ff301a54b7094',
|
|
10847
|
-
appId,
|
|
10848
|
-
whiteList
|
|
10849
|
-
});
|
|
10850
10856
|
;// CONCATENATED MODULE: ./components/demo/utils/config.js
|
|
10851
10857
|
|
|
10852
10858
|
|
|
@@ -11668,7 +11674,7 @@ const signal = controller.signal;
|
|
|
11668
11674
|
scrollToBottom() {
|
|
11669
11675
|
this.$refs.chatContainer.scrollTop = this.$refs.chatContainer.scrollHeight;
|
|
11670
11676
|
},
|
|
11671
|
-
async postMessage(list, commonKey) {
|
|
11677
|
+
async postMessage(list, commonKey, parentMsgId) {
|
|
11672
11678
|
let reanswerParams = {};
|
|
11673
11679
|
if (list) {
|
|
11674
11680
|
reanswerParams = {
|
|
@@ -11685,6 +11691,7 @@ const signal = controller.signal;
|
|
|
11685
11691
|
resId: this.resId,
|
|
11686
11692
|
chatId: this.chatId || undefined,
|
|
11687
11693
|
commonKey: commonKey || false,
|
|
11694
|
+
parentMsgId: parentMsgId || undefined,
|
|
11688
11695
|
...reanswerParams
|
|
11689
11696
|
}]
|
|
11690
11697
|
};
|
|
@@ -11692,7 +11699,7 @@ const signal = controller.signal;
|
|
|
11692
11699
|
if (!list && !commonKey) {
|
|
11693
11700
|
this.messageData.push({
|
|
11694
11701
|
type: 'user',
|
|
11695
|
-
message: this.keyWord
|
|
11702
|
+
message: this.keyWord.replace(/\n/g, '<br>')
|
|
11696
11703
|
});
|
|
11697
11704
|
setTimeout(() => this.messageData.push({
|
|
11698
11705
|
type: 'robot',
|
|
@@ -11724,7 +11731,7 @@ const signal = controller.signal;
|
|
|
11724
11731
|
// 结束标识
|
|
11725
11732
|
if (status === 2 || status === 1) {
|
|
11726
11733
|
if (commonKey) {
|
|
11727
|
-
this.postMessage(list, commonKey);
|
|
11734
|
+
this.postMessage(list, commonKey, parentMsgId);
|
|
11728
11735
|
return;
|
|
11729
11736
|
}
|
|
11730
11737
|
currentList.finish = true;
|
|
@@ -11769,7 +11776,7 @@ const signal = controller.signal;
|
|
|
11769
11776
|
list[0].contents.reverse().map(list => {
|
|
11770
11777
|
const obj = {
|
|
11771
11778
|
type: list.role === 'assistant' ? 'robot' : 'user',
|
|
11772
|
-
message: list.content,
|
|
11779
|
+
message: list.content.replace(/\n/g, '<br>'),
|
|
11773
11780
|
zan: list.type === 1,
|
|
11774
11781
|
cai: list.type === 2,
|
|
11775
11782
|
stop: list.status === 1,
|
|
@@ -11791,10 +11798,10 @@ const signal = controller.signal;
|
|
|
11791
11798
|
});
|
|
11792
11799
|
;// CONCATENATED MODULE: ./components/demo/src/chat.vue?vue&type=script&lang=js
|
|
11793
11800
|
/* harmony default export */ var src_chatvue_type_script_lang_js = (chatvue_type_script_lang_js);
|
|
11794
|
-
;// 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=
|
|
11801
|
+
;// 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=311af3d2&prod&lang=scss&scoped=true
|
|
11795
11802
|
// extracted by mini-css-extract-plugin
|
|
11796
11803
|
|
|
11797
|
-
;// CONCATENATED MODULE: ./components/demo/src/chat.vue?vue&type=style&index=0&id=
|
|
11804
|
+
;// CONCATENATED MODULE: ./components/demo/src/chat.vue?vue&type=style&index=0&id=311af3d2&prod&lang=scss&scoped=true
|
|
11798
11805
|
|
|
11799
11806
|
;// CONCATENATED MODULE: ./components/demo/src/chat.vue
|
|
11800
11807
|
|
|
@@ -11807,11 +11814,11 @@ const signal = controller.signal;
|
|
|
11807
11814
|
|
|
11808
11815
|
var chat_component = normalizeComponent(
|
|
11809
11816
|
src_chatvue_type_script_lang_js,
|
|
11810
|
-
|
|
11811
|
-
|
|
11817
|
+
chatvue_type_template_id_311af3d2_scoped_true_render,
|
|
11818
|
+
chatvue_type_template_id_311af3d2_scoped_true_staticRenderFns,
|
|
11812
11819
|
false,
|
|
11813
11820
|
null,
|
|
11814
|
-
"
|
|
11821
|
+
"311af3d2",
|
|
11815
11822
|
null
|
|
11816
11823
|
|
|
11817
11824
|
)
|
|
@@ -11982,7 +11989,10 @@ var api = init(defaultConverter, {
|
|
|
11982
11989
|
}
|
|
11983
11990
|
this.$refs.chatRef.clearChat();
|
|
11984
11991
|
},
|
|
11985
|
-
goChat() {
|
|
11992
|
+
goChat(event) {
|
|
11993
|
+
if (event.shiftKey) {
|
|
11994
|
+
return;
|
|
11995
|
+
}
|
|
11986
11996
|
if (!this.stopMessage()) {
|
|
11987
11997
|
return;
|
|
11988
11998
|
}
|
|
@@ -12006,10 +12016,10 @@ var api = init(defaultConverter, {
|
|
|
12006
12016
|
});
|
|
12007
12017
|
;// CONCATENATED MODULE: ./components/demo/src/main.vue?vue&type=script&lang=js
|
|
12008
12018
|
/* harmony default export */ var src_mainvue_type_script_lang_js = (mainvue_type_script_lang_js);
|
|
12009
|
-
;// 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=
|
|
12019
|
+
;// 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=98bac9ca&prod&lang=scss&scoped=true
|
|
12010
12020
|
// extracted by mini-css-extract-plugin
|
|
12011
12021
|
|
|
12012
|
-
;// CONCATENATED MODULE: ./components/demo/src/main.vue?vue&type=style&index=0&id=
|
|
12022
|
+
;// CONCATENATED MODULE: ./components/demo/src/main.vue?vue&type=style&index=0&id=98bac9ca&prod&lang=scss&scoped=true
|
|
12013
12023
|
|
|
12014
12024
|
;// CONCATENATED MODULE: ./components/demo/src/main.vue
|
|
12015
12025
|
|
|
@@ -12026,7 +12036,7 @@ var main_component = normalizeComponent(
|
|
|
12026
12036
|
staticRenderFns,
|
|
12027
12037
|
false,
|
|
12028
12038
|
null,
|
|
12029
|
-
"
|
|
12039
|
+
"98bac9ca",
|
|
12030
12040
|
null
|
|
12031
12041
|
|
|
12032
12042
|
)
|