yc-ui2 0.1.2-beta24 → 0.1.2-beta25
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/dist/css/286.00e562fe.css +1 -0
- package/dist/css/774.de9a931f.css +139 -0
- package/dist/css/94.de9a931f.css +139 -0
- package/dist/yc-ui2.common.94.js +442 -0
- package/dist/yc-ui2.common.94.js.map +1 -0
- package/dist/yc-ui2.common.js +370 -107
- package/dist/yc-ui2.common.js.map +1 -1
- package/dist/yc-ui2.css +1 -1
- package/dist/yc-ui2.umd.774.js +442 -0
- package/dist/yc-ui2.umd.774.js.map +1 -0
- package/dist/yc-ui2.umd.js +370 -107
- package/dist/yc-ui2.umd.js.map +1 -1
- package/dist/yc-ui2.umd.min.286.js +2 -0
- package/dist/yc-ui2.umd.min.286.js.map +1 -0
- package/dist/yc-ui2.umd.min.js +1 -1
- package/dist/yc-ui2.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/App.vue +4 -4
- package/src/main.js +2 -2
package/dist/yc-ui2.common.js
CHANGED
@@ -1,6 +1,113 @@
|
|
1
1
|
/******/ (function() { // webpackBootstrap
|
2
2
|
/******/ var __webpack_modules__ = ({
|
3
3
|
|
4
|
+
/***/ 1001:
|
5
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
6
|
+
|
7
|
+
"use strict";
|
8
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
9
|
+
/* harmony export */ Z: function() { return /* binding */ normalizeComponent; }
|
10
|
+
/* harmony export */ });
|
11
|
+
/* globals __VUE_SSR_CONTEXT__ */
|
12
|
+
|
13
|
+
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
14
|
+
// This module is a runtime utility for cleaner component module output and will
|
15
|
+
// be included in the final webpack user bundle.
|
16
|
+
|
17
|
+
function normalizeComponent(
|
18
|
+
scriptExports,
|
19
|
+
render,
|
20
|
+
staticRenderFns,
|
21
|
+
functionalTemplate,
|
22
|
+
injectStyles,
|
23
|
+
scopeId,
|
24
|
+
moduleIdentifier /* server only */,
|
25
|
+
shadowMode /* vue-cli only */
|
26
|
+
) {
|
27
|
+
// Vue.extend constructor export interop
|
28
|
+
var options =
|
29
|
+
typeof scriptExports === 'function' ? scriptExports.options : scriptExports
|
30
|
+
|
31
|
+
// render functions
|
32
|
+
if (render) {
|
33
|
+
options.render = render
|
34
|
+
options.staticRenderFns = staticRenderFns
|
35
|
+
options._compiled = true
|
36
|
+
}
|
37
|
+
|
38
|
+
// functional template
|
39
|
+
if (functionalTemplate) {
|
40
|
+
options.functional = true
|
41
|
+
}
|
42
|
+
|
43
|
+
// scopedId
|
44
|
+
if (scopeId) {
|
45
|
+
options._scopeId = 'data-v-' + scopeId
|
46
|
+
}
|
47
|
+
|
48
|
+
var hook
|
49
|
+
if (moduleIdentifier) {
|
50
|
+
// server build
|
51
|
+
hook = function (context) {
|
52
|
+
// 2.3 injection
|
53
|
+
context =
|
54
|
+
context || // cached call
|
55
|
+
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
56
|
+
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
|
57
|
+
// 2.2 with runInNewContext: true
|
58
|
+
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
59
|
+
context = __VUE_SSR_CONTEXT__
|
60
|
+
}
|
61
|
+
// inject component styles
|
62
|
+
if (injectStyles) {
|
63
|
+
injectStyles.call(this, context)
|
64
|
+
}
|
65
|
+
// register component module identifier for async chunk inferrence
|
66
|
+
if (context && context._registeredComponents) {
|
67
|
+
context._registeredComponents.add(moduleIdentifier)
|
68
|
+
}
|
69
|
+
}
|
70
|
+
// used by ssr in case component is cached and beforeCreate
|
71
|
+
// never gets called
|
72
|
+
options._ssrRegister = hook
|
73
|
+
} else if (injectStyles) {
|
74
|
+
hook = shadowMode
|
75
|
+
? function () {
|
76
|
+
injectStyles.call(
|
77
|
+
this,
|
78
|
+
(options.functional ? this.parent : this).$root.$options.shadowRoot
|
79
|
+
)
|
80
|
+
}
|
81
|
+
: injectStyles
|
82
|
+
}
|
83
|
+
|
84
|
+
if (hook) {
|
85
|
+
if (options.functional) {
|
86
|
+
// for template-only hot-reload because in that case the render fn doesn't
|
87
|
+
// go through the normalizer
|
88
|
+
options._injectStyles = hook
|
89
|
+
// register for functional component in vue file
|
90
|
+
var originalRender = options.render
|
91
|
+
options.render = function renderWithStyleInjection(h, context) {
|
92
|
+
hook.call(context)
|
93
|
+
return originalRender(h, context)
|
94
|
+
}
|
95
|
+
} else {
|
96
|
+
// inject component registration as beforeCreate hook
|
97
|
+
var existing = options.beforeCreate
|
98
|
+
options.beforeCreate = existing ? [].concat(existing, hook) : [hook]
|
99
|
+
}
|
100
|
+
}
|
101
|
+
|
102
|
+
return {
|
103
|
+
exports: scriptExports,
|
104
|
+
options: options
|
105
|
+
}
|
106
|
+
}
|
107
|
+
|
108
|
+
|
109
|
+
/***/ }),
|
110
|
+
|
4
111
|
/***/ 9662:
|
5
112
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
6
113
|
|
@@ -6261,6 +6368,9 @@ module.exports = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAMCAgI
|
|
6261
6368
|
/******/ return module.exports;
|
6262
6369
|
/******/ }
|
6263
6370
|
/******/
|
6371
|
+
/******/ // expose the modules object (__webpack_modules__)
|
6372
|
+
/******/ __webpack_require__.m = __webpack_modules__;
|
6373
|
+
/******/
|
6264
6374
|
/************************************************************************/
|
6265
6375
|
/******/ /* webpack/runtime/compat get default export */
|
6266
6376
|
/******/ !function() {
|
@@ -6286,6 +6396,37 @@ module.exports = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAMCAgI
|
|
6286
6396
|
/******/ };
|
6287
6397
|
/******/ }();
|
6288
6398
|
/******/
|
6399
|
+
/******/ /* webpack/runtime/ensure chunk */
|
6400
|
+
/******/ !function() {
|
6401
|
+
/******/ __webpack_require__.f = {};
|
6402
|
+
/******/ // This file contains only the entry chunk.
|
6403
|
+
/******/ // The chunk loading function for additional chunks
|
6404
|
+
/******/ __webpack_require__.e = function(chunkId) {
|
6405
|
+
/******/ return Promise.all(Object.keys(__webpack_require__.f).reduce(function(promises, key) {
|
6406
|
+
/******/ __webpack_require__.f[key](chunkId, promises);
|
6407
|
+
/******/ return promises;
|
6408
|
+
/******/ }, []));
|
6409
|
+
/******/ };
|
6410
|
+
/******/ }();
|
6411
|
+
/******/
|
6412
|
+
/******/ /* webpack/runtime/get javascript chunk filename */
|
6413
|
+
/******/ !function() {
|
6414
|
+
/******/ // This function allow to reference async chunks
|
6415
|
+
/******/ __webpack_require__.u = function(chunkId) {
|
6416
|
+
/******/ // return url for filenames based on template
|
6417
|
+
/******/ return "yc-ui2.common." + chunkId + ".js";
|
6418
|
+
/******/ };
|
6419
|
+
/******/ }();
|
6420
|
+
/******/
|
6421
|
+
/******/ /* webpack/runtime/get mini-css chunk filename */
|
6422
|
+
/******/ !function() {
|
6423
|
+
/******/ // This function allow to reference async chunks
|
6424
|
+
/******/ __webpack_require__.miniCssF = function(chunkId) {
|
6425
|
+
/******/ // return url for filenames based on template
|
6426
|
+
/******/ return "css/" + chunkId + "." + "de9a931f" + ".css";
|
6427
|
+
/******/ };
|
6428
|
+
/******/ }();
|
6429
|
+
/******/
|
6289
6430
|
/******/ /* webpack/runtime/global */
|
6290
6431
|
/******/ !function() {
|
6291
6432
|
/******/ __webpack_require__.g = (function() {
|
@@ -6303,6 +6444,52 @@ module.exports = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAMCAgI
|
|
6303
6444
|
/******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
|
6304
6445
|
/******/ }();
|
6305
6446
|
/******/
|
6447
|
+
/******/ /* webpack/runtime/load script */
|
6448
|
+
/******/ !function() {
|
6449
|
+
/******/ var inProgress = {};
|
6450
|
+
/******/ var dataWebpackPrefix = "yc-ui2:";
|
6451
|
+
/******/ // loadScript function to load a script via script tag
|
6452
|
+
/******/ __webpack_require__.l = function(url, done, key, chunkId) {
|
6453
|
+
/******/ if(inProgress[url]) { inProgress[url].push(done); return; }
|
6454
|
+
/******/ var script, needAttach;
|
6455
|
+
/******/ if(key !== undefined) {
|
6456
|
+
/******/ var scripts = document.getElementsByTagName("script");
|
6457
|
+
/******/ for(var i = 0; i < scripts.length; i++) {
|
6458
|
+
/******/ var s = scripts[i];
|
6459
|
+
/******/ if(s.getAttribute("src") == url || s.getAttribute("data-webpack") == dataWebpackPrefix + key) { script = s; break; }
|
6460
|
+
/******/ }
|
6461
|
+
/******/ }
|
6462
|
+
/******/ if(!script) {
|
6463
|
+
/******/ needAttach = true;
|
6464
|
+
/******/ script = document.createElement('script');
|
6465
|
+
/******/
|
6466
|
+
/******/ script.charset = 'utf-8';
|
6467
|
+
/******/ script.timeout = 120;
|
6468
|
+
/******/ if (__webpack_require__.nc) {
|
6469
|
+
/******/ script.setAttribute("nonce", __webpack_require__.nc);
|
6470
|
+
/******/ }
|
6471
|
+
/******/ script.setAttribute("data-webpack", dataWebpackPrefix + key);
|
6472
|
+
/******/
|
6473
|
+
/******/ script.src = url;
|
6474
|
+
/******/ }
|
6475
|
+
/******/ inProgress[url] = [done];
|
6476
|
+
/******/ var onScriptComplete = function(prev, event) {
|
6477
|
+
/******/ // avoid mem leaks in IE.
|
6478
|
+
/******/ script.onerror = script.onload = null;
|
6479
|
+
/******/ clearTimeout(timeout);
|
6480
|
+
/******/ var doneFns = inProgress[url];
|
6481
|
+
/******/ delete inProgress[url];
|
6482
|
+
/******/ script.parentNode && script.parentNode.removeChild(script);
|
6483
|
+
/******/ doneFns && doneFns.forEach(function(fn) { return fn(event); });
|
6484
|
+
/******/ if(prev) return prev(event);
|
6485
|
+
/******/ }
|
6486
|
+
/******/ var timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000);
|
6487
|
+
/******/ script.onerror = onScriptComplete.bind(null, script.onerror);
|
6488
|
+
/******/ script.onload = onScriptComplete.bind(null, script.onload);
|
6489
|
+
/******/ needAttach && document.head.appendChild(script);
|
6490
|
+
/******/ };
|
6491
|
+
/******/ }();
|
6492
|
+
/******/
|
6306
6493
|
/******/ /* webpack/runtime/make namespace object */
|
6307
6494
|
/******/ !function() {
|
6308
6495
|
/******/ // define __esModule on exports
|
@@ -6319,6 +6506,175 @@ module.exports = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAMCAgI
|
|
6319
6506
|
/******/ __webpack_require__.p = "";
|
6320
6507
|
/******/ }();
|
6321
6508
|
/******/
|
6509
|
+
/******/ /* webpack/runtime/css loading */
|
6510
|
+
/******/ !function() {
|
6511
|
+
/******/ if (typeof document === "undefined") return;
|
6512
|
+
/******/ var createStylesheet = function(chunkId, fullhref, oldTag, resolve, reject) {
|
6513
|
+
/******/ var linkTag = document.createElement("link");
|
6514
|
+
/******/
|
6515
|
+
/******/ linkTag.rel = "stylesheet";
|
6516
|
+
/******/ linkTag.type = "text/css";
|
6517
|
+
/******/ var onLinkComplete = function(event) {
|
6518
|
+
/******/ // avoid mem leaks.
|
6519
|
+
/******/ linkTag.onerror = linkTag.onload = null;
|
6520
|
+
/******/ if (event.type === 'load') {
|
6521
|
+
/******/ resolve();
|
6522
|
+
/******/ } else {
|
6523
|
+
/******/ var errorType = event && (event.type === 'load' ? 'missing' : event.type);
|
6524
|
+
/******/ var realHref = event && event.target && event.target.href || fullhref;
|
6525
|
+
/******/ var err = new Error("Loading CSS chunk " + chunkId + " failed.\n(" + realHref + ")");
|
6526
|
+
/******/ err.code = "CSS_CHUNK_LOAD_FAILED";
|
6527
|
+
/******/ err.type = errorType;
|
6528
|
+
/******/ err.request = realHref;
|
6529
|
+
/******/ if (linkTag.parentNode) linkTag.parentNode.removeChild(linkTag)
|
6530
|
+
/******/ reject(err);
|
6531
|
+
/******/ }
|
6532
|
+
/******/ }
|
6533
|
+
/******/ linkTag.onerror = linkTag.onload = onLinkComplete;
|
6534
|
+
/******/ linkTag.href = fullhref;
|
6535
|
+
/******/
|
6536
|
+
/******/ if (oldTag) {
|
6537
|
+
/******/ oldTag.parentNode.insertBefore(linkTag, oldTag.nextSibling);
|
6538
|
+
/******/ } else {
|
6539
|
+
/******/ document.head.appendChild(linkTag);
|
6540
|
+
/******/ }
|
6541
|
+
/******/ return linkTag;
|
6542
|
+
/******/ };
|
6543
|
+
/******/ var findStylesheet = function(href, fullhref) {
|
6544
|
+
/******/ var existingLinkTags = document.getElementsByTagName("link");
|
6545
|
+
/******/ for(var i = 0; i < existingLinkTags.length; i++) {
|
6546
|
+
/******/ var tag = existingLinkTags[i];
|
6547
|
+
/******/ var dataHref = tag.getAttribute("data-href") || tag.getAttribute("href");
|
6548
|
+
/******/ if(tag.rel === "stylesheet" && (dataHref === href || dataHref === fullhref)) return tag;
|
6549
|
+
/******/ }
|
6550
|
+
/******/ var existingStyleTags = document.getElementsByTagName("style");
|
6551
|
+
/******/ for(var i = 0; i < existingStyleTags.length; i++) {
|
6552
|
+
/******/ var tag = existingStyleTags[i];
|
6553
|
+
/******/ var dataHref = tag.getAttribute("data-href");
|
6554
|
+
/******/ if(dataHref === href || dataHref === fullhref) return tag;
|
6555
|
+
/******/ }
|
6556
|
+
/******/ };
|
6557
|
+
/******/ var loadStylesheet = function(chunkId) {
|
6558
|
+
/******/ return new Promise(function(resolve, reject) {
|
6559
|
+
/******/ var href = __webpack_require__.miniCssF(chunkId);
|
6560
|
+
/******/ var fullhref = __webpack_require__.p + href;
|
6561
|
+
/******/ if(findStylesheet(href, fullhref)) return resolve();
|
6562
|
+
/******/ createStylesheet(chunkId, fullhref, null, resolve, reject);
|
6563
|
+
/******/ });
|
6564
|
+
/******/ }
|
6565
|
+
/******/ // object to store loaded CSS chunks
|
6566
|
+
/******/ var installedCssChunks = {
|
6567
|
+
/******/ 61: 0
|
6568
|
+
/******/ };
|
6569
|
+
/******/
|
6570
|
+
/******/ __webpack_require__.f.miniCss = function(chunkId, promises) {
|
6571
|
+
/******/ var cssChunks = {"94":1};
|
6572
|
+
/******/ if(installedCssChunks[chunkId]) promises.push(installedCssChunks[chunkId]);
|
6573
|
+
/******/ else if(installedCssChunks[chunkId] !== 0 && cssChunks[chunkId]) {
|
6574
|
+
/******/ promises.push(installedCssChunks[chunkId] = loadStylesheet(chunkId).then(function() {
|
6575
|
+
/******/ installedCssChunks[chunkId] = 0;
|
6576
|
+
/******/ }, function(e) {
|
6577
|
+
/******/ delete installedCssChunks[chunkId];
|
6578
|
+
/******/ throw e;
|
6579
|
+
/******/ }));
|
6580
|
+
/******/ }
|
6581
|
+
/******/ };
|
6582
|
+
/******/
|
6583
|
+
/******/ // no hmr
|
6584
|
+
/******/ }();
|
6585
|
+
/******/
|
6586
|
+
/******/ /* webpack/runtime/jsonp chunk loading */
|
6587
|
+
/******/ !function() {
|
6588
|
+
/******/ // no baseURI
|
6589
|
+
/******/
|
6590
|
+
/******/ // object to store loaded and loading chunks
|
6591
|
+
/******/ // undefined = chunk not loaded, null = chunk preloaded/prefetched
|
6592
|
+
/******/ // [resolve, reject, Promise] = chunk loading, 0 = chunk loaded
|
6593
|
+
/******/ var installedChunks = {
|
6594
|
+
/******/ 61: 0
|
6595
|
+
/******/ };
|
6596
|
+
/******/
|
6597
|
+
/******/ __webpack_require__.f.j = function(chunkId, promises) {
|
6598
|
+
/******/ // JSONP chunk loading for javascript
|
6599
|
+
/******/ var installedChunkData = __webpack_require__.o(installedChunks, chunkId) ? installedChunks[chunkId] : undefined;
|
6600
|
+
/******/ if(installedChunkData !== 0) { // 0 means "already installed".
|
6601
|
+
/******/
|
6602
|
+
/******/ // a Promise means "currently loading".
|
6603
|
+
/******/ if(installedChunkData) {
|
6604
|
+
/******/ promises.push(installedChunkData[2]);
|
6605
|
+
/******/ } else {
|
6606
|
+
/******/ if(true) { // all chunks have JS
|
6607
|
+
/******/ // setup Promise in chunk cache
|
6608
|
+
/******/ var promise = new Promise(function(resolve, reject) { installedChunkData = installedChunks[chunkId] = [resolve, reject]; });
|
6609
|
+
/******/ promises.push(installedChunkData[2] = promise);
|
6610
|
+
/******/
|
6611
|
+
/******/ // start chunk loading
|
6612
|
+
/******/ var url = __webpack_require__.p + __webpack_require__.u(chunkId);
|
6613
|
+
/******/ // create error before stack unwound to get useful stacktrace later
|
6614
|
+
/******/ var error = new Error();
|
6615
|
+
/******/ var loadingEnded = function(event) {
|
6616
|
+
/******/ if(__webpack_require__.o(installedChunks, chunkId)) {
|
6617
|
+
/******/ installedChunkData = installedChunks[chunkId];
|
6618
|
+
/******/ if(installedChunkData !== 0) installedChunks[chunkId] = undefined;
|
6619
|
+
/******/ if(installedChunkData) {
|
6620
|
+
/******/ var errorType = event && (event.type === 'load' ? 'missing' : event.type);
|
6621
|
+
/******/ var realSrc = event && event.target && event.target.src;
|
6622
|
+
/******/ error.message = 'Loading chunk ' + chunkId + ' failed.\n(' + errorType + ': ' + realSrc + ')';
|
6623
|
+
/******/ error.name = 'ChunkLoadError';
|
6624
|
+
/******/ error.type = errorType;
|
6625
|
+
/******/ error.request = realSrc;
|
6626
|
+
/******/ installedChunkData[1](error);
|
6627
|
+
/******/ }
|
6628
|
+
/******/ }
|
6629
|
+
/******/ };
|
6630
|
+
/******/ __webpack_require__.l(url, loadingEnded, "chunk-" + chunkId, chunkId);
|
6631
|
+
/******/ }
|
6632
|
+
/******/ }
|
6633
|
+
/******/ }
|
6634
|
+
/******/ };
|
6635
|
+
/******/
|
6636
|
+
/******/ // no prefetching
|
6637
|
+
/******/
|
6638
|
+
/******/ // no preloaded
|
6639
|
+
/******/
|
6640
|
+
/******/ // no HMR
|
6641
|
+
/******/
|
6642
|
+
/******/ // no HMR manifest
|
6643
|
+
/******/
|
6644
|
+
/******/ // no on chunks loaded
|
6645
|
+
/******/
|
6646
|
+
/******/ // install a JSONP callback for chunk loading
|
6647
|
+
/******/ var webpackJsonpCallback = function(parentChunkLoadingFunction, data) {
|
6648
|
+
/******/ var chunkIds = data[0];
|
6649
|
+
/******/ var moreModules = data[1];
|
6650
|
+
/******/ var runtime = data[2];
|
6651
|
+
/******/ // add "moreModules" to the modules object,
|
6652
|
+
/******/ // then flag all "chunkIds" as loaded and fire callback
|
6653
|
+
/******/ var moduleId, chunkId, i = 0;
|
6654
|
+
/******/ if(chunkIds.some(function(id) { return installedChunks[id] !== 0; })) {
|
6655
|
+
/******/ for(moduleId in moreModules) {
|
6656
|
+
/******/ if(__webpack_require__.o(moreModules, moduleId)) {
|
6657
|
+
/******/ __webpack_require__.m[moduleId] = moreModules[moduleId];
|
6658
|
+
/******/ }
|
6659
|
+
/******/ }
|
6660
|
+
/******/ if(runtime) var result = runtime(__webpack_require__);
|
6661
|
+
/******/ }
|
6662
|
+
/******/ if(parentChunkLoadingFunction) parentChunkLoadingFunction(data);
|
6663
|
+
/******/ for(;i < chunkIds.length; i++) {
|
6664
|
+
/******/ chunkId = chunkIds[i];
|
6665
|
+
/******/ if(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {
|
6666
|
+
/******/ installedChunks[chunkId][0]();
|
6667
|
+
/******/ }
|
6668
|
+
/******/ installedChunks[chunkId] = 0;
|
6669
|
+
/******/ }
|
6670
|
+
/******/
|
6671
|
+
/******/ }
|
6672
|
+
/******/
|
6673
|
+
/******/ var chunkLoadingGlobal = (typeof self !== 'undefined' ? self : this)["webpackChunkyc_ui2"] = (typeof self !== 'undefined' ? self : this)["webpackChunkyc_ui2"] || [];
|
6674
|
+
/******/ chunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));
|
6675
|
+
/******/ chunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));
|
6676
|
+
/******/ }();
|
6677
|
+
/******/
|
6322
6678
|
/************************************************************************/
|
6323
6679
|
var __webpack_exports__ = {};
|
6324
6680
|
// This entry need to be wrapped in an IIFE because it need to be in strict mode.
|
@@ -6349,7 +6705,7 @@ if (typeof window !== 'undefined') {
|
|
6349
6705
|
// Indicate to webpack that this file can be concatenated
|
6350
6706
|
/* harmony default export */ var setPublicPath = (null);
|
6351
6707
|
|
6352
|
-
;// 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!./src/components/YcSlideVerify/index.vue?vue&type=template&id=
|
6708
|
+
;// 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!./src/components/YcSlideVerify/index.vue?vue&type=template&id=27550b14&scoped=true&
|
6353
6709
|
var render = function render() {
|
6354
6710
|
var _vm = this,
|
6355
6711
|
_c = _vm._self._c;
|
@@ -6391,6 +6747,9 @@ var es_array_push = __webpack_require__(7658);
|
|
6391
6747
|
|
6392
6748
|
/* harmony default export */ var YcSlideVerifyvue_type_script_lang_js_ = ({
|
6393
6749
|
name: "YcSlideVerify",
|
6750
|
+
components: {
|
6751
|
+
slideVerify: () => __webpack_require__.e(/* import() */ 94).then(__webpack_require__.bind(__webpack_require__, 9094))
|
6752
|
+
},
|
6394
6753
|
props: {
|
6395
6754
|
title: {
|
6396
6755
|
type: String,
|
@@ -6439,109 +6798,13 @@ var es_array_push = __webpack_require__(7658);
|
|
6439
6798
|
});
|
6440
6799
|
;// CONCATENATED MODULE: ./src/components/YcSlideVerify/index.vue?vue&type=script&lang=js&
|
6441
6800
|
/* harmony default export */ var components_YcSlideVerifyvue_type_script_lang_js_ = (YcSlideVerifyvue_type_script_lang_js_);
|
6442
|
-
;// 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!./src/components/YcSlideVerify/index.vue?vue&type=style&index=0&id=
|
6801
|
+
;// 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!./src/components/YcSlideVerify/index.vue?vue&type=style&index=0&id=27550b14&prod&lang=scss&scoped=true&
|
6443
6802
|
// extracted by mini-css-extract-plugin
|
6444
6803
|
|
6445
|
-
;// CONCATENATED MODULE: ./src/components/YcSlideVerify/index.vue?vue&type=style&index=0&id=
|
6446
|
-
|
6447
|
-
;// CONCATENATED MODULE: ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
|
6448
|
-
/* globals __VUE_SSR_CONTEXT__ */
|
6449
|
-
|
6450
|
-
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
6451
|
-
// This module is a runtime utility for cleaner component module output and will
|
6452
|
-
// be included in the final webpack user bundle.
|
6453
|
-
|
6454
|
-
function normalizeComponent(
|
6455
|
-
scriptExports,
|
6456
|
-
render,
|
6457
|
-
staticRenderFns,
|
6458
|
-
functionalTemplate,
|
6459
|
-
injectStyles,
|
6460
|
-
scopeId,
|
6461
|
-
moduleIdentifier /* server only */,
|
6462
|
-
shadowMode /* vue-cli only */
|
6463
|
-
) {
|
6464
|
-
// Vue.extend constructor export interop
|
6465
|
-
var options =
|
6466
|
-
typeof scriptExports === 'function' ? scriptExports.options : scriptExports
|
6467
|
-
|
6468
|
-
// render functions
|
6469
|
-
if (render) {
|
6470
|
-
options.render = render
|
6471
|
-
options.staticRenderFns = staticRenderFns
|
6472
|
-
options._compiled = true
|
6473
|
-
}
|
6474
|
-
|
6475
|
-
// functional template
|
6476
|
-
if (functionalTemplate) {
|
6477
|
-
options.functional = true
|
6478
|
-
}
|
6479
|
-
|
6480
|
-
// scopedId
|
6481
|
-
if (scopeId) {
|
6482
|
-
options._scopeId = 'data-v-' + scopeId
|
6483
|
-
}
|
6484
|
-
|
6485
|
-
var hook
|
6486
|
-
if (moduleIdentifier) {
|
6487
|
-
// server build
|
6488
|
-
hook = function (context) {
|
6489
|
-
// 2.3 injection
|
6490
|
-
context =
|
6491
|
-
context || // cached call
|
6492
|
-
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
6493
|
-
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
|
6494
|
-
// 2.2 with runInNewContext: true
|
6495
|
-
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
6496
|
-
context = __VUE_SSR_CONTEXT__
|
6497
|
-
}
|
6498
|
-
// inject component styles
|
6499
|
-
if (injectStyles) {
|
6500
|
-
injectStyles.call(this, context)
|
6501
|
-
}
|
6502
|
-
// register component module identifier for async chunk inferrence
|
6503
|
-
if (context && context._registeredComponents) {
|
6504
|
-
context._registeredComponents.add(moduleIdentifier)
|
6505
|
-
}
|
6506
|
-
}
|
6507
|
-
// used by ssr in case component is cached and beforeCreate
|
6508
|
-
// never gets called
|
6509
|
-
options._ssrRegister = hook
|
6510
|
-
} else if (injectStyles) {
|
6511
|
-
hook = shadowMode
|
6512
|
-
? function () {
|
6513
|
-
injectStyles.call(
|
6514
|
-
this,
|
6515
|
-
(options.functional ? this.parent : this).$root.$options.shadowRoot
|
6516
|
-
)
|
6517
|
-
}
|
6518
|
-
: injectStyles
|
6519
|
-
}
|
6520
|
-
|
6521
|
-
if (hook) {
|
6522
|
-
if (options.functional) {
|
6523
|
-
// for template-only hot-reload because in that case the render fn doesn't
|
6524
|
-
// go through the normalizer
|
6525
|
-
options._injectStyles = hook
|
6526
|
-
// register for functional component in vue file
|
6527
|
-
var originalRender = options.render
|
6528
|
-
options.render = function renderWithStyleInjection(h, context) {
|
6529
|
-
hook.call(context)
|
6530
|
-
return originalRender(h, context)
|
6531
|
-
}
|
6532
|
-
} else {
|
6533
|
-
// inject component registration as beforeCreate hook
|
6534
|
-
var existing = options.beforeCreate
|
6535
|
-
options.beforeCreate = existing ? [].concat(existing, hook) : [hook]
|
6536
|
-
}
|
6537
|
-
}
|
6538
|
-
|
6539
|
-
return {
|
6540
|
-
exports: scriptExports,
|
6541
|
-
options: options
|
6542
|
-
}
|
6543
|
-
}
|
6804
|
+
;// CONCATENATED MODULE: ./src/components/YcSlideVerify/index.vue?vue&type=style&index=0&id=27550b14&prod&lang=scss&scoped=true&
|
6544
6805
|
|
6806
|
+
// EXTERNAL MODULE: ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
|
6807
|
+
var componentNormalizer = __webpack_require__(1001);
|
6545
6808
|
;// CONCATENATED MODULE: ./src/components/YcSlideVerify/index.vue
|
6546
6809
|
|
6547
6810
|
|
@@ -6551,13 +6814,13 @@ function normalizeComponent(
|
|
6551
6814
|
|
6552
6815
|
/* normalize component */
|
6553
6816
|
|
6554
|
-
var component =
|
6817
|
+
var component = (0,componentNormalizer/* default */.Z)(
|
6555
6818
|
components_YcSlideVerifyvue_type_script_lang_js_,
|
6556
6819
|
render,
|
6557
6820
|
staticRenderFns,
|
6558
6821
|
false,
|
6559
6822
|
null,
|
6560
|
-
"
|
6823
|
+
"27550b14",
|
6561
6824
|
null
|
6562
6825
|
|
6563
6826
|
)
|
@@ -6850,7 +7113,7 @@ var chatvue_type_template_id_755436e0_scoped_true_staticRenderFns = [];
|
|
6850
7113
|
|
6851
7114
|
/* normalize component */
|
6852
7115
|
|
6853
|
-
var chat_component =
|
7116
|
+
var chat_component = (0,componentNormalizer/* default */.Z)(
|
6854
7117
|
YcCustomerService_chatvue_type_script_lang_js_,
|
6855
7118
|
chatvue_type_template_id_755436e0_scoped_true_render,
|
6856
7119
|
chatvue_type_template_id_755436e0_scoped_true_staticRenderFns,
|
@@ -6914,7 +7177,7 @@ var chat_component = normalizeComponent(
|
|
6914
7177
|
|
6915
7178
|
/* normalize component */
|
6916
7179
|
|
6917
|
-
var YcCustomerService_component =
|
7180
|
+
var YcCustomerService_component = (0,componentNormalizer/* default */.Z)(
|
6918
7181
|
components_YcCustomerServicevue_type_script_lang_js_,
|
6919
7182
|
YcCustomerServicevue_type_template_id_849349a0_scoped_true_render,
|
6920
7183
|
YcCustomerServicevue_type_template_id_849349a0_scoped_true_staticRenderFns,
|
@@ -7103,7 +7366,7 @@ var YcQuestionvue_type_template_id_6185ef7a_scoped_true_staticRenderFns = [];
|
|
7103
7366
|
|
7104
7367
|
/* normalize component */
|
7105
7368
|
|
7106
|
-
var YcQuestion_component =
|
7369
|
+
var YcQuestion_component = (0,componentNormalizer/* default */.Z)(
|
7107
7370
|
components_YcQuestionvue_type_script_lang_js_,
|
7108
7371
|
YcQuestionvue_type_template_id_6185ef7a_scoped_true_render,
|
7109
7372
|
YcQuestionvue_type_template_id_6185ef7a_scoped_true_staticRenderFns,
|
@@ -9122,7 +9385,7 @@ function formateTime(dateStr) {
|
|
9122
9385
|
|
9123
9386
|
/* normalize component */
|
9124
9387
|
|
9125
|
-
var YcCA_component =
|
9388
|
+
var YcCA_component = (0,componentNormalizer/* default */.Z)(
|
9126
9389
|
components_YcCAvue_type_script_lang_js_,
|
9127
9390
|
YcCAvue_type_template_id_eeb04946_scoped_true_render,
|
9128
9391
|
YcCAvue_type_template_id_eeb04946_scoped_true_staticRenderFns,
|