@smallwei/avue 2.10.13 → 2.10.14
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/lib/avue.js +9 -9
- package/lib/avue.min.js +2 -2
- package/package.json +1 -1
package/lib/avue.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Avue.js v2.10.
|
|
2
|
+
* Avue.js v2.10.14
|
|
3
3
|
* (c) 2017-2023 Smallwei
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*
|
|
@@ -770,7 +770,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var core
|
|
|
770
770
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
771
771
|
|
|
772
772
|
"use strict";
|
|
773
|
-
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var core_create__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core/create */ \"./src/core/create.js\");\n/* harmony import */ var common_common_props_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! common/common/props.js */ \"./packages/core/common/props.js\");\n/* harmony import */ var common_common_event_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! common/common/event.js */ \"./packages/core/common/event.js\");\n/* harmony import */ var global_variable__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! global/variable */ \"./src/global/variable.js\");\nfunction _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }\nfunction _nonIterableSpread() { throw new TypeError(\"Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\nfunction _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\nfunction _iterableToArray(iter) { if (typeof Symbol !== \"undefined\" && iter[Symbol.iterator] != null || iter[\"@@iterator\"] != null) return Array.from(iter); }\nfunction _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }\nfunction _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\n\n\n\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (Object(core_create__WEBPACK_IMPORTED_MODULE_0__[\"default\"])({\n name: \"input-tree\",\n mixins: [Object(common_common_props_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(), Object(common_common_event_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"])()],\n data: function data() {\n return {\n node: [],\n filterValue: \"\",\n box: false,\n dicList: []\n };\n },\n props: {\n indent: Number,\n filterNodeMethod: Function,\n nodeClick: Function,\n treeLoad: Function,\n checked: Function,\n lazy: {\n type: Boolean,\n \"default\": false\n },\n leafOnly: {\n type: Boolean,\n \"default\": false\n },\n tags: {\n type: Boolean,\n \"default\": false\n },\n limit: {\n type: Number,\n \"default\": 0\n },\n filter: {\n type: Boolean,\n \"default\": true\n },\n filterText: {\n type: String,\n \"default\": ''\n },\n checkStrictly: {\n type: Boolean,\n \"default\": false\n },\n accordion: {\n type: Boolean,\n \"default\": false\n },\n parent: {\n type: Boolean,\n \"default\": true\n },\n iconClass: String,\n defaultExpandedKeys: Array,\n checkOnClickNode: Boolean,\n expandOnClickNode: Boolean,\n defaultExpandAll: Boolean,\n popperAppendToBody: Boolean\n },\n watch: {\n text: function text(val) {\n this.init();\n },\n dic: {\n handler: function handler(val) {\n this.dicList = val;\n },\n immediate: true\n },\n dicList: {\n handler: function handler() {\n this.init();\n },\n immediate: true\n },\n filterValue: function filterValue(val) {\n this.$refs.tree.filter(val);\n }\n },\n computed: {\n treeProps: function treeProps() {\n return Object.assign(this.props, {\n isLeaf: this.leafKey\n });\n },\n currentNodeKey: function currentNodeKey() {\n return this.multiple ? '' : this.text;\n },\n keysList: function keysList() {\n return this.multiple ? this.text : [this.text || ''];\n },\n labelShow: function labelShow() {\n var _this = this;\n var list = _toConsumableArray(this.node);\n var result = list.map(function (ele) {\n return _this.getLabelText(ele);\n });\n return result;\n }\n },\n methods: {\n handleClear: function handleClear() {\n this.text = this.multiple ? [] : '';\n this.node = [];\n this.filterValue = '';\n this.$refs.tree.setCurrentKey(null);\n this.$refs.tree.setCheckedKeys([]);\n },\n handleTreeLoad: function handleTreeLoad(node, resolve) {\n var _this2 = this;\n var callback = function callback(list) {\n var findDic = function findDic(list, value, children) {\n list.forEach(function (ele) {\n if (ele[_this2.valueKey] == value) {\n ele[_this2.childrenKey] = children;\n } else if (ele[_this2.childrenKey]) {\n findDic(ele[_this2.childrenKey]);\n }\n });\n };\n findDic(_this2.dicList, node.key, list);\n resolve(list);\n };\n this.treeLoad && this.treeLoad(node, callback);\n },\n filterNode: function filterNode(value, data) {\n if (typeof this.filterNodeMethod === 'function') {\n return this.filterNodeMethod(value, data);\n }\n if (!value) return true;\n return data[this.labelKey].toLowerCase().indexOf(value.toLowerCase()) !== -1;\n },\n checkChange: function checkChange(checkedNodes, checkedKeys, halfCheckedNodes, halfCheckedKeys) {\n var _this3 = this;\n this.text.splice(0, this.text.length);\n var list = this.$refs.tree.getCheckedNodes(this.leafOnly, false);\n list.forEach(function (node) {\n return _this3.text.push(node[_this3.valueKey]);\n });\n if (typeof this.checked === \"function\") this.checked(checkedNodes, checkedKeys, halfCheckedNodes, halfCheckedKeys);\n },\n getHalfList: function getHalfList() {\n var _this4 = this;\n var list = this.$refs.tree.getCheckedNodes(false, true);\n list = list.map(function (ele) {\n return ele[_this4.valueKey];\n });\n return list;\n },\n init: function init() {\n var _this5 = this;\n this.$nextTick(function () {\n _this5.node = [];\n if (_this5.multiple) {\n if (_this5.validatenull(_this5.text)) {\n _this5.$refs.tree.setCheckedKeys([]);\n } else {\n var list = _this5.$refs.tree.getCheckedNodes(_this5.leafOnly, false);\n list.forEach(function (ele) {\n _this5.node.push(ele);\n });\n }\n } else {\n var node = _this5.$refs.tree.getNode(_this5.text);\n if (node) {\n var data = node.data;\n _this5.$refs.tree.setCurrentKey(data[_this5.valueKey]);\n _this5.node.push(data);\n }\n }\n });\n //是否禁止父类\n this.disabledParentNode(this.dic, this.parent);\n },\n disabledParentNode: function disabledParentNode(dic, parent) {\n var _this6 = this;\n dic.forEach(function (ele) {\n var children = ele[_this6.childrenKey];\n if (!_this6.validatenull(children)) {\n if (!parent) {\n ele.disabled = true;\n }\n _this6.disabledParentNode(children, parent);\n }\n });\n },\n handleNodeClick: function handleNodeClick(data, node, nodeComp) {\n if (data.disabled) return;\n if (typeof this.nodeClick === \"function\") this.nodeClick(data, node, nodeComp);\n if (this.multiple) return;\n if (this.validatenull(data[this.childrenKey]) && !this.multiple || this.parent) {\n this.text = data[this.valueKey];\n this.$refs.main.blur();\n }\n }\n }\n}));\n\n//# sourceURL=webpack://AVUE/./packages/element-ui/input-tree/index.vue?./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options");
|
|
773
|
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var core_create__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core/create */ \"./src/core/create.js\");\n/* harmony import */ var common_common_props_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! common/common/props.js */ \"./packages/core/common/props.js\");\n/* harmony import */ var common_common_event_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! common/common/event.js */ \"./packages/core/common/event.js\");\n/* harmony import */ var global_variable__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! global/variable */ \"./src/global/variable.js\");\nfunction _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }\nfunction _nonIterableSpread() { throw new TypeError(\"Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\nfunction _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\nfunction _iterableToArray(iter) { if (typeof Symbol !== \"undefined\" && iter[Symbol.iterator] != null || iter[\"@@iterator\"] != null) return Array.from(iter); }\nfunction _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }\nfunction _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\n\n\n\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (Object(core_create__WEBPACK_IMPORTED_MODULE_0__[\"default\"])({\n name: \"input-tree\",\n mixins: [Object(common_common_props_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(), Object(common_common_event_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"])()],\n data: function data() {\n return {\n node: [],\n filterValue: \"\",\n box: false,\n dicList: []\n };\n },\n props: {\n indent: Number,\n filterNodeMethod: Function,\n nodeClick: Function,\n treeLoad: Function,\n checked: Function,\n lazy: {\n type: Boolean,\n \"default\": false\n },\n leafOnly: {\n type: Boolean,\n \"default\": false\n },\n tags: {\n type: Boolean,\n \"default\": false\n },\n limit: {\n type: Number,\n \"default\": 0\n },\n filter: {\n type: Boolean,\n \"default\": true\n },\n filterText: {\n type: String,\n \"default\": ''\n },\n checkStrictly: {\n type: Boolean,\n \"default\": false\n },\n accordion: {\n type: Boolean,\n \"default\": false\n },\n parent: {\n type: Boolean,\n \"default\": true\n },\n iconClass: String,\n defaultExpandedKeys: Array,\n checkOnClickNode: Boolean,\n expandOnClickNode: Boolean,\n defaultExpandAll: Boolean,\n popperAppendToBody: {\n type: Boolean,\n \"default\": true\n }\n },\n watch: {\n text: function text(val) {\n this.init();\n },\n dic: {\n handler: function handler(val) {\n this.dicList = val;\n },\n immediate: true\n },\n dicList: {\n handler: function handler() {\n this.init();\n },\n immediate: true\n },\n filterValue: function filterValue(val) {\n this.$refs.tree.filter(val);\n }\n },\n computed: {\n treeProps: function treeProps() {\n return Object.assign(this.props, {\n isLeaf: this.leafKey\n });\n },\n currentNodeKey: function currentNodeKey() {\n return this.multiple ? '' : this.text;\n },\n keysList: function keysList() {\n return this.multiple ? this.text : [this.text || ''];\n },\n labelShow: function labelShow() {\n var _this = this;\n var list = _toConsumableArray(this.node);\n var result = list.map(function (ele) {\n return _this.getLabelText(ele);\n });\n return result;\n }\n },\n methods: {\n handleClear: function handleClear() {\n this.text = this.multiple ? [] : '';\n this.node = [];\n this.filterValue = '';\n this.$refs.tree.setCurrentKey(null);\n this.$refs.tree.setCheckedKeys([]);\n },\n handleTreeLoad: function handleTreeLoad(node, resolve) {\n var _this2 = this;\n var callback = function callback(list) {\n var findDic = function findDic(list, value, children) {\n list.forEach(function (ele) {\n if (ele[_this2.valueKey] == value) {\n ele[_this2.childrenKey] = children;\n } else if (ele[_this2.childrenKey]) {\n findDic(ele[_this2.childrenKey]);\n }\n });\n };\n findDic(_this2.dicList, node.key, list);\n resolve(list);\n };\n this.treeLoad && this.treeLoad(node, callback);\n },\n filterNode: function filterNode(value, data) {\n if (typeof this.filterNodeMethod === 'function') {\n return this.filterNodeMethod(value, data);\n }\n if (!value) return true;\n return data[this.labelKey].toLowerCase().indexOf(value.toLowerCase()) !== -1;\n },\n checkChange: function checkChange(checkedNodes, checkedKeys, halfCheckedNodes, halfCheckedKeys) {\n var _this3 = this;\n this.text.splice(0, this.text.length);\n var list = this.$refs.tree.getCheckedNodes(this.leafOnly, false);\n list.forEach(function (node) {\n return _this3.text.push(node[_this3.valueKey]);\n });\n if (typeof this.checked === \"function\") this.checked(checkedNodes, checkedKeys, halfCheckedNodes, halfCheckedKeys);\n },\n getHalfList: function getHalfList() {\n var _this4 = this;\n var list = this.$refs.tree.getCheckedNodes(false, true);\n list = list.map(function (ele) {\n return ele[_this4.valueKey];\n });\n return list;\n },\n init: function init() {\n var _this5 = this;\n this.$nextTick(function () {\n _this5.node = [];\n if (_this5.multiple) {\n if (_this5.validatenull(_this5.text)) {\n _this5.$refs.tree.setCheckedKeys([]);\n } else {\n var list = _this5.$refs.tree.getCheckedNodes(_this5.leafOnly, false);\n list.forEach(function (ele) {\n _this5.node.push(ele);\n });\n }\n } else {\n var node = _this5.$refs.tree.getNode(_this5.text);\n if (node) {\n var data = node.data;\n _this5.$refs.tree.setCurrentKey(data[_this5.valueKey]);\n _this5.node.push(data);\n }\n }\n });\n //是否禁止父类\n this.disabledParentNode(this.dic, this.parent);\n },\n disabledParentNode: function disabledParentNode(dic, parent) {\n var _this6 = this;\n dic.forEach(function (ele) {\n var children = ele[_this6.childrenKey];\n if (!_this6.validatenull(children)) {\n if (!parent) {\n ele.disabled = true;\n }\n _this6.disabledParentNode(children, parent);\n }\n });\n },\n handleNodeClick: function handleNodeClick(data, node, nodeComp) {\n if (data.disabled) return;\n if (typeof this.nodeClick === \"function\") this.nodeClick(data, node, nodeComp);\n if (this.multiple) return;\n if (this.validatenull(data[this.childrenKey]) && !this.multiple || this.parent) {\n this.text = data[this.valueKey];\n this.$refs.main.blur();\n }\n }\n }\n}));\n\n//# sourceURL=webpack://AVUE/./packages/element-ui/input-tree/index.vue?./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options");
|
|
774
774
|
|
|
775
775
|
/***/ }),
|
|
776
776
|
|
|
@@ -1742,9 +1742,9 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) *
|
|
|
1742
1742
|
|
|
1743
1743
|
/***/ }),
|
|
1744
1744
|
|
|
1745
|
-
/***/ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./packages/element-ui/input-tree/index.vue?vue&type=template&id=
|
|
1745
|
+
/***/ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./packages/element-ui/input-tree/index.vue?vue&type=template&id=334a3862&":
|
|
1746
1746
|
/*!***************************************************************************************************************************************************************************************************!*\
|
|
1747
|
-
!*** ./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/vue-loader/lib??vue-loader-options!./packages/element-ui/input-tree/index.vue?vue&type=template&id=
|
|
1747
|
+
!*** ./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/vue-loader/lib??vue-loader-options!./packages/element-ui/input-tree/index.vue?vue&type=template&id=334a3862& ***!
|
|
1748
1748
|
\***************************************************************************************************************************************************************************************************/
|
|
1749
1749
|
/*! exports provided: render, staticRenderFns */
|
|
1750
1750
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -4150,7 +4150,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _nod
|
|
|
4150
4150
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
4151
4151
|
|
|
4152
4152
|
"use strict";
|
|
4153
|
-
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var
|
|
4153
|
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _index_vue_vue_type_template_id_334a3862___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./index.vue?vue&type=template&id=334a3862& */ \"./packages/element-ui/input-tree/index.vue?vue&type=template&id=334a3862&\");\n/* harmony import */ var _index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./index.vue?vue&type=script&lang=js& */ \"./packages/element-ui/input-tree/index.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport *//* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ \"./node_modules/vue-loader/lib/runtime/componentNormalizer.js\");\n\n\n\n\n\n/* normalize component */\n\nvar component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(\n _index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[\"default\"],\n _index_vue_vue_type_template_id_334a3862___WEBPACK_IMPORTED_MODULE_0__[\"render\"],\n _index_vue_vue_type_template_id_334a3862___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"],\n false,\n null,\n null,\n null\n \n)\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (component.exports);\n\n//# sourceURL=webpack://AVUE/./packages/element-ui/input-tree/index.vue?");
|
|
4154
4154
|
|
|
4155
4155
|
/***/ }),
|
|
4156
4156
|
|
|
@@ -4166,15 +4166,15 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _nod
|
|
|
4166
4166
|
|
|
4167
4167
|
/***/ }),
|
|
4168
4168
|
|
|
4169
|
-
/***/ "./packages/element-ui/input-tree/index.vue?vue&type=template&id=
|
|
4169
|
+
/***/ "./packages/element-ui/input-tree/index.vue?vue&type=template&id=334a3862&":
|
|
4170
4170
|
/*!*********************************************************************************!*\
|
|
4171
|
-
!*** ./packages/element-ui/input-tree/index.vue?vue&type=template&id=
|
|
4171
|
+
!*** ./packages/element-ui/input-tree/index.vue?vue&type=template&id=334a3862& ***!
|
|
4172
4172
|
\*********************************************************************************/
|
|
4173
4173
|
/*! exports provided: render, staticRenderFns */
|
|
4174
4174
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
4175
4175
|
|
|
4176
4176
|
"use strict";
|
|
4177
|
-
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var
|
|
4177
|
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_vue_loader_lib_loaders_templateLoader_js_ref_5_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_template_id_334a3862___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!../../../node_modules/vue-loader/lib??vue-loader-options!./index.vue?vue&type=template&id=334a3862& */ \"./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./packages/element-ui/input-tree/index.vue?vue&type=template&id=334a3862&\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_ref_5_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_template_id_334a3862___WEBPACK_IMPORTED_MODULE_0__[\"render\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_ref_5_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_template_id_334a3862___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"]; });\n\n\n\n//# sourceURL=webpack://AVUE/./packages/element-ui/input-tree/index.vue?");
|
|
4178
4178
|
|
|
4179
4179
|
/***/ }),
|
|
4180
4180
|
|
|
@@ -5374,7 +5374,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) *
|
|
|
5374
5374
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
5375
5375
|
|
|
5376
5376
|
"use strict";
|
|
5377
|
-
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"version\", function() { return version; });\nvar version = '2.10.
|
|
5377
|
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"version\", function() { return version; });\nvar version = '2.10.14';\n\n//# sourceURL=webpack://AVUE/./src/version.js?");
|
|
5378
5378
|
|
|
5379
5379
|
/***/ }),
|
|
5380
5380
|
|