vue-intergrall-plugins 1.0.69 → 1.0.70
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.
|
@@ -7074,7 +7074,14 @@ const fileHandler = {
|
|
|
7074
7074
|
},
|
|
7075
7075
|
computed: {
|
|
7076
7076
|
iconClass() {
|
|
7077
|
-
|
|
7077
|
+
if (typeof this.fileType !== 'string') return "doc";
|
|
7078
|
+
if (this.fileType.includes('pdf')) return "pdf";
|
|
7079
|
+
if (this.fileType.includes('xls') || this.fileType.includes('xlsx')) return "xls";
|
|
7080
|
+
if (this.fileType.includes('ppt') || this.fileType.includes('pptx')) return "ppt";
|
|
7081
|
+
if (this.fileType.includes('zip') || this.fileType.includes('rar')) return "zip";
|
|
7082
|
+
if (this.fileType.includes('iml') || this.fileType.includes('xml')) return "xml";
|
|
7083
|
+
if (this.fileType.includes('mp3') || this.fileType.includes('aac') || this.fileType.includes('ogg') || this.fileType.includes('wma')) return "audio";
|
|
7084
|
+
return "doc";
|
|
7078
7085
|
}
|
|
7079
7086
|
},
|
|
7080
7087
|
methods: {
|
|
@@ -7130,7 +7137,14 @@ const fileHandler = {
|
|
|
7130
7137
|
}
|
|
7131
7138
|
},
|
|
7132
7139
|
setIcon() {
|
|
7133
|
-
|
|
7140
|
+
if (typeof this.fileType !== 'string') return this.icon = ['fas', 'file-alt'];
|
|
7141
|
+
if (this.fileType.includes('pdf')) return this.icon = ['fas', 'file-pdf'];
|
|
7142
|
+
if (this.fileType.includes('xls') || this.fileType.includes('xlsx')) return this.icon = ['fas', 'file-excel'];
|
|
7143
|
+
if (this.fileType.includes('ppt') || this.fileType.includes('pptx')) return this.icon = ['fas', 'file-powerpoint'];
|
|
7144
|
+
if (this.fileType.includes('zip') || this.fileType.includes('rar')) return this.icon = ['fas', 'file-archive'];
|
|
7145
|
+
if (this.fileType.includes('iml') || this.fileType.includes('xml')) return this.icon = ['fas', 'file-code'];
|
|
7146
|
+
if (this.fileType.includes('mp3') || this.fileType.includes('aac') || this.fileType.includes('ogg') || this.fileType.includes('wma') || this.fileType.includes('mpeg')) return this.icon = ['fas', 'file-audio'];
|
|
7147
|
+
return this.icon = ['fas', 'file-alt'];
|
|
7134
7148
|
},
|
|
7135
7149
|
downloadAllFilesHandler(referenceSelector) {
|
|
7136
7150
|
try {
|
|
@@ -10640,6 +10654,7 @@ var __vue_render__$3 = function () {
|
|
|
10640
10654
|
},
|
|
10641
10655
|
on: {
|
|
10642
10656
|
"click": function ($event) {
|
|
10657
|
+
$event.stopPropagation();
|
|
10643
10658
|
return _vm.openWindowFromURL(_vm.imageURL, true);
|
|
10644
10659
|
}
|
|
10645
10660
|
}
|
|
@@ -10665,6 +10680,7 @@ var __vue_render__$3 = function () {
|
|
|
10665
10680
|
},
|
|
10666
10681
|
on: {
|
|
10667
10682
|
"click": function ($event) {
|
|
10683
|
+
$event.stopPropagation();
|
|
10668
10684
|
return _vm.openWindowFromURL(_vm.docURL, false);
|
|
10669
10685
|
}
|
|
10670
10686
|
}
|
|
@@ -10679,6 +10695,11 @@ var __vue_render__$3 = function () {
|
|
|
10679
10695
|
"download": "" + _vm.filename,
|
|
10680
10696
|
"target": "_blank",
|
|
10681
10697
|
"title": "Download " + _vm.filename
|
|
10698
|
+
},
|
|
10699
|
+
on: {
|
|
10700
|
+
"click": function ($event) {
|
|
10701
|
+
$event.stopPropagation();
|
|
10702
|
+
}
|
|
10682
10703
|
}
|
|
10683
10704
|
}, [_c('fa-icon', {
|
|
10684
10705
|
attrs: {
|
|
@@ -10691,6 +10712,11 @@ var __vue_render__$3 = function () {
|
|
|
10691
10712
|
},
|
|
10692
10713
|
domProps: {
|
|
10693
10714
|
"textContent": _vm._s(_vm.filename)
|
|
10715
|
+
},
|
|
10716
|
+
on: {
|
|
10717
|
+
"click": function ($event) {
|
|
10718
|
+
$event.stopPropagation();
|
|
10719
|
+
}
|
|
10694
10720
|
}
|
|
10695
10721
|
})])], 1);
|
|
10696
10722
|
};
|
|
@@ -10699,8 +10725,8 @@ var __vue_staticRenderFns__$3 = [];
|
|
|
10699
10725
|
/* style */
|
|
10700
10726
|
const __vue_inject_styles__$3 = function (inject) {
|
|
10701
10727
|
if (!inject) return;
|
|
10702
|
-
inject("data-v-
|
|
10703
|
-
source: ".email-file{display:flex;align-items:center;justify-content:flex-end;flex-direction:column;min-width:50px;width:auto;max-width:100px;height:70px;position:relative}.anexo-img{display:flex;justify-content:center;align-items:center;width:100%;height:100%;overflow:hidden;background-color:rgba(0,0,0,.2);border-radius:2.5px;cursor:pointer;opacity:.9;transition:opacity 150ms}.anexo-img:hover{opacity:1}.anexo-img img{max-width:100%;font-size:.8rem}.anexo-video{width:100%;height:100%;max-width:100%;overflow:hidden}.anexo-video video{max-width:100%}.box-shadow{-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);-moz-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.anexo-icone{display:flex;justify-content:center;align-items:center;font-size:30px;cursor:pointer}.anexo-icone:hover{opacity:1}.anexo-icone:visited{color:inherit}.anexo-icone.pdf{position:relative}.anexo-icone.pdf svg{color:#e74c3c}.anexo-icone.pdf::after{content:\"\";position:absolute;bottom:2px;transform:translateY(2px);width:20px;height:20px}.anexo-icone.doc{color:#15517f}.anexo-icone.doc::after{content:\"\";position:absolute;width:20px;height:20px}.anexo-download{position:absolute;top:0;right:0;border-radius:5px;padding:5px;display:flex;justify-content:center;align-items:center;color:#222;background-color:#fff;z-index:1;font-size:.8rem;cursor:pointer}.anexo-name{max-width:100%;font-size:.8rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding:2px 0 5px 0;height:20px}.anexo-icone,.anexo-img,.anexo-video{max-height:calc(100% - 20px)}",
|
|
10728
|
+
inject("data-v-5c283162_0", {
|
|
10729
|
+
source: ".email-file{display:flex;align-items:center;justify-content:flex-end;flex-direction:column;min-width:50px;width:auto;max-width:100px;height:70px;position:relative}.anexo-img{display:flex;justify-content:center;align-items:center;width:100%;height:100%;overflow:hidden;background-color:rgba(0,0,0,.2);border-radius:2.5px;cursor:pointer;opacity:.9;transition:opacity 150ms}.anexo-img:hover{opacity:1}.anexo-img img{max-width:100%;font-size:.8rem}.anexo-video{width:100%;height:100%;max-width:100%;overflow:hidden}.anexo-video video{max-width:100%}.box-shadow{-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);-moz-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.anexo-icone{display:flex;justify-content:center;align-items:center;font-size:30px;cursor:pointer}.anexo-icone:hover{opacity:1}.anexo-icone:visited{color:inherit}.anexo-icone.pdf{position:relative}.anexo-icone.pdf svg{color:#e74c3c}.anexo-icone.xls svg{color:#00a65a}.anexo-icone.ppt svg{color:#e67e22}.anexo-icone.zip svg{color:#7434db}.anexo-icone.xml svg{color:#3498db}.anexo-icone.audio svg{color:#506879}.anexo-icone.pdf::after{content:\"\";position:absolute;bottom:2px;transform:translateY(2px);width:20px;height:20px}.anexo-icone.doc{color:#15517f}.anexo-icone.doc::after{content:\"\";position:absolute;width:20px;height:20px}.anexo-download{position:absolute;top:0;right:0;border-radius:5px;padding:5px;display:flex;justify-content:center;align-items:center;color:#222;background-color:#fff;z-index:1;font-size:.8rem;cursor:pointer}.anexo-name{max-width:100%;font-size:.8rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding:2px 0 5px 0;height:20px}.anexo-icone,.anexo-img,.anexo-video{max-height:calc(100% - 20px)}",
|
|
10704
10730
|
map: undefined,
|
|
10705
10731
|
media: undefined
|
|
10706
10732
|
});
|
|
@@ -10974,6 +11000,12 @@ var script$1 = {
|
|
|
10974
11000
|
});
|
|
10975
11001
|
}
|
|
10976
11002
|
return infos;
|
|
11003
|
+
},
|
|
11004
|
+
filteredFiles() {
|
|
11005
|
+
if (!this.anexos || !this.anexos.length) return;
|
|
11006
|
+
return this.anexos.filter(anexo => {
|
|
11007
|
+
return !this.html.includes(anexo.name);
|
|
11008
|
+
});
|
|
10977
11009
|
}
|
|
10978
11010
|
},
|
|
10979
11011
|
watch: {
|
|
@@ -11006,8 +11038,12 @@ var script$1 = {
|
|
|
11006
11038
|
if (!iframe) return;
|
|
11007
11039
|
const doc = iframe.contentDocument || iframe.contentWindow.document;
|
|
11008
11040
|
if (!doc) return;
|
|
11041
|
+
let content = this.html;
|
|
11042
|
+
if (!/<[a-z][\s\S]*>/i.test(content)) {
|
|
11043
|
+
content = `<p>${content}</p>`;
|
|
11044
|
+
}
|
|
11009
11045
|
doc.open();
|
|
11010
|
-
doc.write(
|
|
11046
|
+
doc.write(content);
|
|
11011
11047
|
doc.close();
|
|
11012
11048
|
const images = doc.getElementsByTagName('img');
|
|
11013
11049
|
let imagesLoaded = 0;
|
|
@@ -11091,7 +11127,7 @@ var script$1 = {
|
|
|
11091
11127
|
assunto: this.assunto,
|
|
11092
11128
|
dataHora: this.dataHora,
|
|
11093
11129
|
mensagem: this.mensagem,
|
|
11094
|
-
anexos: this.
|
|
11130
|
+
anexos: this.filteredFiles,
|
|
11095
11131
|
dataServer: this.dataServer,
|
|
11096
11132
|
dominio: this.dominio
|
|
11097
11133
|
});
|
|
@@ -11161,7 +11197,7 @@ var __vue_render__$1 = function () {
|
|
|
11161
11197
|
staticClass: "email-overlay"
|
|
11162
11198
|
}) : _vm._e(), _vm._v(" "), _vm.autor ? _c('div', {
|
|
11163
11199
|
staticClass: "email-author",
|
|
11164
|
-
class: [_vm.origem],
|
|
11200
|
+
class: [_vm.origem, _vm.isMainEmail ? 'main' : ''],
|
|
11165
11201
|
on: {
|
|
11166
11202
|
"click": function ($event) {
|
|
11167
11203
|
$event.stopPropagation();
|
|
@@ -11283,6 +11319,12 @@ var __vue_render__$1 = function () {
|
|
|
11283
11319
|
"textContent": _vm._s("Assunto: " + (_vm.htmlEntityToEmoji(_vm.replaceUnicodeWithEmoji(_vm.assunto)) || '(Sem assunto)'))
|
|
11284
11320
|
}
|
|
11285
11321
|
})]) : _vm._e()], 2)]), _vm._v(" "), _c('span', {
|
|
11322
|
+
directives: [{
|
|
11323
|
+
name: "show",
|
|
11324
|
+
rawName: "v-show",
|
|
11325
|
+
value: _vm.formattedDate,
|
|
11326
|
+
expression: "formattedDate"
|
|
11327
|
+
}],
|
|
11286
11328
|
ref: "emailDate",
|
|
11287
11329
|
class: "email-date " + (_vm.isOpen ? _vm.isOpenClass : _vm.isClosedClass),
|
|
11288
11330
|
attrs: {
|
|
@@ -11368,14 +11410,15 @@ var __vue_render__$1 = function () {
|
|
|
11368
11410
|
class: "email-html " + (_vm.isIframeLoading ? 'visibility-hidden' : '')
|
|
11369
11411
|
}), _vm._v(" "), _vm.openMessage ? _c('span', {
|
|
11370
11412
|
staticClass: "email-raw"
|
|
11371
|
-
}, [_vm._v(_vm._s(_vm.mensagem))]) : _vm._e()], 1)]), _vm._v(" "), _vm.
|
|
11372
|
-
|
|
11373
|
-
|
|
11374
|
-
"
|
|
11375
|
-
|
|
11376
|
-
|
|
11377
|
-
}
|
|
11378
|
-
|
|
11413
|
+
}, [_vm._v(_vm._s(_vm.mensagem))]) : _vm._e()], 1)]), _vm._v(" "), _vm.filteredFiles && _vm.filteredFiles.length ? _c('div', {
|
|
11414
|
+
directives: [{
|
|
11415
|
+
name: "show",
|
|
11416
|
+
rawName: "v-show",
|
|
11417
|
+
value: _vm.isOpen || _vm.isMainEmail,
|
|
11418
|
+
expression: "isOpen || isMainEmail"
|
|
11419
|
+
}],
|
|
11420
|
+
staticClass: "email-files"
|
|
11421
|
+
}, _vm._l(_vm.filteredFiles, function (anexo, index) {
|
|
11379
11422
|
return _c('EmailFile', {
|
|
11380
11423
|
key: index,
|
|
11381
11424
|
attrs: {
|
|
@@ -11390,18 +11433,18 @@ var __vue_staticRenderFns__$1 = [];
|
|
|
11390
11433
|
/* style */
|
|
11391
11434
|
const __vue_inject_styles__$1 = function (inject) {
|
|
11392
11435
|
if (!inject) return;
|
|
11393
|
-
inject("data-v-
|
|
11394
|
-
source: ".show-y-top-enter-active[data-v-
|
|
11436
|
+
inject("data-v-4fe1fe7e_0", {
|
|
11437
|
+
source: ".show-y-top-enter-active[data-v-4fe1fe7e],.show-y-top-leave-enter[data-v-4fe1fe7e]{opacity:1;transform:translateY(0);transition:all .2s linear}.show-y-top-enter[data-v-4fe1fe7e],.show-y-top-leave-to[data-v-4fe1fe7e]{opacity:0;transform:translateY(-2%)}",
|
|
11395
11438
|
map: undefined,
|
|
11396
11439
|
media: undefined
|
|
11397
|
-
}), inject("data-v-
|
|
11398
|
-
source: "@import url(https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap);.visibility-hidden{visibility:hidden}.box-shadow-active{box-shadow:0 0 4px 2px rgba(0,0,0,.25)}.bg-dark-white-2{background-color:#f7f7f7}.bg-white{background-color:#fff}.cursor-pointer{cursor:pointer}.email-overlay{width:100%;height:100%;background-color:transparent;z-index:1;position:absolute;top:0;left:0}.email-item{font-family:Roboto,sans-serif;flex:1;margin:0 0 10px 0;color:#222;min-height:60px;display:flex;flex-wrap:wrap;padding:10px;border-radius:5px;transition:all 150ms ease-in-out;max-width:100%;width:100%;overflow:hidden;position:relative}.email-item.outros{border-left:3px solid #33b8df}.email-author-name{margin:0 5px;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.email-author.outros{color:#33b8df}.email-author.outros>svg:nth-child(1){transform:rotate(180deg)}.email-author.principal{color:#ebb552}.email-item.principal{border-left:3px solid #ebb552}.email-item.info-open{overflow:visible}.email-header{width:100%;display:flex;flex-direction:column;cursor:pointer;border-top-right-radius:5px;border-top-left-radius:5px;position:relative;overflow:visible}.header-container{display:flex;overflow:hidden;position:relative}.email-header-content{display:flex;align-items:center;flex:1;min-width:250px}.email-header-infos{display:flex;flex-direction:column;flex:1}.email-subject{margin:5px 0 0 0;font-size:1.025rem;cursor:pointer}.email-date{--width:245px;font-size:.8rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;position:absolute;right:0;top:0;min-width:var(--width);width:var(--width);max-width:var(--width);display:flex;justify-content:flex-end;gap:3px;align-items:center}.email-content{display:flex;flex-direction:column;align-items:center;justify-content:flex-start;width:100%;background-color:#fff;position:relative;max-width:100%}.email-actions{align-self:flex-end;display:flex;border-radius:10px;cursor:pointer;align-items:center;justify-content:center;gap:3px;padding:5px 7px;background-color:#ddd;position:absolute;right:0;top:30px;z-index:1}.email-actions.main{top:10px}.email-actions.active{background-color:#dfdfdf}.email-actions>span{width:4px;height:4px;min-width:4px;min-height:4px;max-width:4px;max-height:4px;background-color:#222;border-radius:50%}.email-actions-list{position:absolute;right:45px;width:250px;top:5px;margin:0;list-style-type:none;padding:0;border-radius:5px;z-index:1}.email-action{background-color:#dfdfdf;padding:5px 10px;cursor:pointer;transition:background-color 150ms ease-in-out;font-size:.9rem;user-select:none}.email-action:nth-child(1){border-top-left-radius:5px;border-top-right-radius:5px}.email-action:last-child{border-bottom-left-radius:5px;border-bottom-right-radius:5px}.email-action:hover{background-color:#ccc}.email-html{width:100%;min-width:300px;max-width:100%;border:none;overflow:auto}.email-raw{width:100%;max-width:100%;padding:15px;font-size:.9rem;color:#222}.email-files{display:flex;gap:10px;flex-wrap:wrap;width:100%;
|
|
11440
|
+
}), inject("data-v-4fe1fe7e_1", {
|
|
11441
|
+
source: "@import url(https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap);.visibility-hidden{visibility:hidden}.box-shadow-active{box-shadow:0 0 4px 2px rgba(0,0,0,.25)}.bg-dark-white-2{background-color:#f7f7f7}.bg-white{background-color:#fff}.cursor-pointer{cursor:pointer}.email-overlay{width:100%;height:100%;background-color:transparent;z-index:1;position:absolute;top:0;left:0}.email-item{font-family:Roboto,sans-serif;flex:1;margin:0 0 10px 0;color:#222;min-height:60px;display:flex;flex-wrap:wrap;padding:10px;border-radius:5px;transition:all 150ms ease-in-out;max-width:100%;width:100%;overflow:hidden;position:relative}.email-item.outros{border-left:3px solid #33b8df}.email-author-name{margin:0 5px;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.email-author.outros{color:#33b8df}.email-author.outros>svg:nth-child(1){transform:rotate(180deg)}.email-author.principal{color:#ebb552}.email-author.main{font-size:1.025rem}.email-item.principal{border-left:3px solid #ebb552}.email-item.info-open{overflow:visible}.email-header{width:100%;display:flex;flex-direction:column;cursor:pointer;border-top-right-radius:5px;border-top-left-radius:5px;position:relative;overflow:visible}.header-container{display:flex;overflow:hidden;position:relative}.email-header-content{display:flex;align-items:center;flex:1;min-width:250px}.email-header-infos{display:flex;flex-direction:column;flex:1}.email-subject{margin:5px 0 0 0;font-size:1.025rem;cursor:pointer}.email-date{--width:245px;font-size:.8rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;position:absolute;right:0;top:0;min-width:var(--width);width:var(--width);max-width:var(--width);display:flex;justify-content:flex-end;gap:3px;align-items:center}.email-content{display:flex;flex-direction:column;align-items:center;justify-content:flex-start;width:100%;background-color:#fff;position:relative;max-width:100%}.email-actions{align-self:flex-end;display:flex;border-radius:10px;cursor:pointer;align-items:center;justify-content:center;gap:3px;padding:5px 7px;background-color:#ddd;position:absolute;right:0;top:30px;z-index:1}.email-actions.main{top:10px}.email-actions.active{background-color:#dfdfdf}.email-actions>span{width:4px;height:4px;min-width:4px;min-height:4px;max-width:4px;max-height:4px;background-color:#222;border-radius:50%}.email-actions-list{position:absolute;right:45px;width:250px;top:5px;margin:0;list-style-type:none;padding:0;border-radius:5px;z-index:1}.email-action{background-color:#dfdfdf;padding:5px 10px;cursor:pointer;transition:background-color 150ms ease-in-out;font-size:.9rem;user-select:none}.email-action:nth-child(1){border-top-left-radius:5px;border-top-right-radius:5px}.email-action:last-child{border-bottom-left-radius:5px;border-bottom-right-radius:5px}.email-action:hover{background-color:#ccc}.email-html{width:100%;min-width:300px;max-width:100%;border:none;overflow:auto}.email-raw{width:100%;max-width:100%;padding:15px;font-size:.9rem;color:#222}.email-files{display:flex;gap:10px;flex-wrap:wrap;width:100%;margin-top:5px}.email-header-content,.email-header-infos{max-width:100%;overflow:hidden}.email-to-from-container{margin-bottom:5px;max-width:100%;min-width:250px;overflow:hidden;display:flex;align-items:center;flex-wrap:wrap;flex:1;gap:5px}.email-to-btn{padding:0 5px;font-size:.9rem;cursor:pointer;color:#666}.email-to-infos{position:absolute;bottom:-325px;border:1px solid #ccc;z-index:2;padding:10px;background-color:#fff;max-height:300px;overflow-y:auto;overflow-x:hidden;width:300px;display:flex;flex-direction:column;gap:5px;margin:0;cursor:default}.email-info{width:100%;font-size:.8rem}.email-info>span{font-size:.75rem;color:gray;margin-right:3px}.email-author{display:flex;align-items:center;height:5px;font-size:.75rem;font-weight:700;transform:translateY(-2px);width:100%;cursor:pointer}.email-subject-secondary{margin-top:-5px}.email-subject-span{font-size:.7rem;color:gray}.email-to-svg{font-size:.85rem}.email-custom-buttons{display:flex;gap:7px;position:absolute;top:5px;right:5px;z-index:1;font-size:.8rem}.menu-mensagem{cursor:pointer;padding:1px}",
|
|
11399
11442
|
map: undefined,
|
|
11400
11443
|
media: undefined
|
|
11401
11444
|
});
|
|
11402
11445
|
};
|
|
11403
11446
|
/* scoped */
|
|
11404
|
-
const __vue_scope_id__$1 = "data-v-
|
|
11447
|
+
const __vue_scope_id__$1 = "data-v-4fe1fe7e";
|
|
11405
11448
|
/* module identifier */
|
|
11406
11449
|
const __vue_module_identifier__$1 = undefined;
|
|
11407
11450
|
/* functional template */
|