xt-element-ui 1.0.2 → 1.0.4
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/README.md +35 -0
- package/lib/demo.html +10 -1
- package/lib/index.common.js +178 -118
- package/lib/index.css +1 -1
- package/lib/index.umd.js +162 -142
- package/lib/index.umd.min.js +1 -1
- package/package.json +11 -13
- package/src/components/button/index.vue +3 -2
- package/src/index.js +6 -9
- /package/lib/fonts/{element-icons.ff18efd1.woff → element-icons.535877f5.woff} +0 -0
- /package/lib/fonts/{element-icons.f1a45d74.ttf → element-icons.732389de.ttf} +0 -0
package/README.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# XT-Element-UI
|
|
2
|
+
|
|
3
|
+
>基于Vue2+ElementUI组件库
|
|
4
|
+
|
|
5
|
+
## 特性
|
|
6
|
+
|
|
7
|
+
- **丰富的组件**:提供多种常用组件
|
|
8
|
+
- **开箱即用**:基于element-ui构建,无缝集成
|
|
9
|
+
- **可发布**:完整的 npm 包架构,支持按需引入
|
|
10
|
+
- **可覆盖**:组件设计支持覆盖 Element UI 原有组件
|
|
11
|
+
|
|
12
|
+
## 快速开始
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
# 安装
|
|
16
|
+
npm install xt-element-ui
|
|
17
|
+
|
|
18
|
+
# 全局引入
|
|
19
|
+
import Vue form 'vue'
|
|
20
|
+
import XtElementUI from 'xt-element-ui'
|
|
21
|
+
|
|
22
|
+
Vue.use(XtElementUI)
|
|
23
|
+
```
|
|
24
|
+
## 组件列表
|
|
25
|
+
|
|
26
|
+
|组件|说明|
|
|
27
|
+
|XtButton|按钮组件|
|
|
28
|
+
|XtCard|卡片组件|
|
|
29
|
+
|XtChart|图表组件|
|
|
30
|
+
|布局类组件||
|
|
31
|
+
|XtPage||
|
|
32
|
+
|XtFlexBox||
|
|
33
|
+
|XtGridBox||
|
|
34
|
+
|XtCollapse||
|
|
35
|
+
|XtFieldset|表单域|
|
package/lib/demo.html
CHANGED
|
@@ -1 +1,10 @@
|
|
|
1
|
-
|
|
1
|
+
<meta charset="utf-8">
|
|
2
|
+
<title>index demo</title>
|
|
3
|
+
<script src="./index.umd.js"></script>
|
|
4
|
+
|
|
5
|
+
<link rel="stylesheet" href="./index.css">
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
<script>
|
|
9
|
+
console.log(index)
|
|
10
|
+
</script>
|
package/lib/index.common.js
CHANGED
|
@@ -1,84 +1,138 @@
|
|
|
1
|
-
|
|
2
|
-
/******/
|
|
3
|
-
/******/ // The
|
|
4
|
-
/******/ var
|
|
5
|
-
/******/
|
|
6
|
-
|
|
7
|
-
/******/
|
|
8
|
-
/******/
|
|
9
|
-
/******/ //
|
|
10
|
-
/******/
|
|
11
|
-
/******/
|
|
12
|
-
/******/
|
|
13
|
-
/******/
|
|
14
|
-
/******/
|
|
15
|
-
/******/
|
|
16
|
-
/******/
|
|
17
|
-
/******/
|
|
18
|
-
/******/
|
|
19
|
-
/******/ /* webpack/runtime/define property getters */
|
|
20
|
-
/******/ (() => {
|
|
21
|
-
/******/ // define getter functions for harmony exports
|
|
22
|
-
/******/ __webpack_require__.d = (exports, definition) => {
|
|
23
|
-
/******/ for(var key in definition) {
|
|
24
|
-
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
|
|
25
|
-
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
|
26
|
-
/******/ }
|
|
27
|
-
/******/ }
|
|
1
|
+
module.exports =
|
|
2
|
+
/******/ (function(modules) { // webpackBootstrap
|
|
3
|
+
/******/ // The module cache
|
|
4
|
+
/******/ var installedModules = {};
|
|
5
|
+
/******/
|
|
6
|
+
/******/ // The require function
|
|
7
|
+
/******/ function __webpack_require__(moduleId) {
|
|
8
|
+
/******/
|
|
9
|
+
/******/ // Check if module is in cache
|
|
10
|
+
/******/ if(installedModules[moduleId]) {
|
|
11
|
+
/******/ return installedModules[moduleId].exports;
|
|
12
|
+
/******/ }
|
|
13
|
+
/******/ // Create a new module (and put it into the cache)
|
|
14
|
+
/******/ var module = installedModules[moduleId] = {
|
|
15
|
+
/******/ i: moduleId,
|
|
16
|
+
/******/ l: false,
|
|
17
|
+
/******/ exports: {}
|
|
28
18
|
/******/ };
|
|
29
|
-
/******/
|
|
30
|
-
/******/
|
|
31
|
-
/******/
|
|
32
|
-
/******/
|
|
33
|
-
/******/
|
|
34
|
-
/******/
|
|
35
|
-
/******/
|
|
36
|
-
/******/
|
|
37
|
-
/******/
|
|
38
|
-
/******/
|
|
39
|
-
/******/
|
|
40
|
-
/******/
|
|
41
|
-
/******/
|
|
42
|
-
/******/
|
|
43
|
-
/******/
|
|
44
|
-
/******/
|
|
45
|
-
/******/
|
|
46
|
-
/******/
|
|
47
|
-
/******/
|
|
48
|
-
/******/ (
|
|
49
|
-
/******/ __webpack_require__.
|
|
50
|
-
/******/
|
|
51
|
-
/******/
|
|
19
|
+
/******/
|
|
20
|
+
/******/ // Execute the module function
|
|
21
|
+
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
|
22
|
+
/******/
|
|
23
|
+
/******/ // Flag the module as loaded
|
|
24
|
+
/******/ module.l = true;
|
|
25
|
+
/******/
|
|
26
|
+
/******/ // Return the exports of the module
|
|
27
|
+
/******/ return module.exports;
|
|
28
|
+
/******/ }
|
|
29
|
+
/******/
|
|
30
|
+
/******/
|
|
31
|
+
/******/ // expose the modules object (__webpack_modules__)
|
|
32
|
+
/******/ __webpack_require__.m = modules;
|
|
33
|
+
/******/
|
|
34
|
+
/******/ // expose the module cache
|
|
35
|
+
/******/ __webpack_require__.c = installedModules;
|
|
36
|
+
/******/
|
|
37
|
+
/******/ // define getter function for harmony exports
|
|
38
|
+
/******/ __webpack_require__.d = function(exports, name, getter) {
|
|
39
|
+
/******/ if(!__webpack_require__.o(exports, name)) {
|
|
40
|
+
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
|
41
|
+
/******/ }
|
|
42
|
+
/******/ };
|
|
43
|
+
/******/
|
|
44
|
+
/******/ // define __esModule on exports
|
|
45
|
+
/******/ __webpack_require__.r = function(exports) {
|
|
46
|
+
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
|
47
|
+
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
48
|
+
/******/ }
|
|
49
|
+
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
|
50
|
+
/******/ };
|
|
51
|
+
/******/
|
|
52
|
+
/******/ // create a fake namespace object
|
|
53
|
+
/******/ // mode & 1: value is a module id, require it
|
|
54
|
+
/******/ // mode & 2: merge all properties of value into the ns
|
|
55
|
+
/******/ // mode & 4: return value when already ns object
|
|
56
|
+
/******/ // mode & 8|1: behave like require
|
|
57
|
+
/******/ __webpack_require__.t = function(value, mode) {
|
|
58
|
+
/******/ if(mode & 1) value = __webpack_require__(value);
|
|
59
|
+
/******/ if(mode & 8) return value;
|
|
60
|
+
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
|
61
|
+
/******/ var ns = Object.create(null);
|
|
62
|
+
/******/ __webpack_require__.r(ns);
|
|
63
|
+
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
|
64
|
+
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
|
65
|
+
/******/ return ns;
|
|
66
|
+
/******/ };
|
|
67
|
+
/******/
|
|
68
|
+
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|
69
|
+
/******/ __webpack_require__.n = function(module) {
|
|
70
|
+
/******/ var getter = module && module.__esModule ?
|
|
71
|
+
/******/ function getDefault() { return module['default']; } :
|
|
72
|
+
/******/ function getModuleExports() { return module; };
|
|
73
|
+
/******/ __webpack_require__.d(getter, 'a', getter);
|
|
74
|
+
/******/ return getter;
|
|
75
|
+
/******/ };
|
|
76
|
+
/******/
|
|
77
|
+
/******/ // Object.prototype.hasOwnProperty.call
|
|
78
|
+
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
|
79
|
+
/******/
|
|
80
|
+
/******/ // __webpack_public_path__
|
|
81
|
+
/******/ __webpack_require__.p = "";
|
|
82
|
+
/******/
|
|
83
|
+
/******/
|
|
84
|
+
/******/ // Load entry module and return exports
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = "fb15");
|
|
86
|
+
/******/ })
|
|
52
87
|
/************************************************************************/
|
|
53
|
-
|
|
88
|
+
/******/ ({
|
|
89
|
+
|
|
90
|
+
/***/ "0fae":
|
|
91
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
92
|
+
|
|
93
|
+
// extracted by mini-css-extract-plugin
|
|
94
|
+
|
|
95
|
+
/***/ }),
|
|
96
|
+
|
|
97
|
+
/***/ "5f72":
|
|
98
|
+
/***/ (function(module, exports) {
|
|
99
|
+
|
|
100
|
+
module.exports = require("ElementUI");
|
|
101
|
+
|
|
102
|
+
/***/ }),
|
|
103
|
+
|
|
104
|
+
/***/ "8bbf":
|
|
105
|
+
/***/ (function(module, exports) {
|
|
106
|
+
|
|
107
|
+
module.exports = require("Vue");
|
|
108
|
+
|
|
109
|
+
/***/ }),
|
|
110
|
+
|
|
111
|
+
/***/ "fb15":
|
|
112
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
113
|
+
|
|
114
|
+
"use strict";
|
|
54
115
|
// ESM COMPAT FLAG
|
|
55
116
|
__webpack_require__.r(__webpack_exports__);
|
|
56
117
|
|
|
57
118
|
// EXPORTS
|
|
58
|
-
__webpack_require__.d(__webpack_exports__, {
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
setSize: () => (/* reexport */ setSize),
|
|
71
|
-
setTheme: () => (/* reexport */ setTheme)
|
|
72
|
-
});
|
|
73
|
-
|
|
74
|
-
;// ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
|
|
75
|
-
/* eslint-disable no-var */
|
|
119
|
+
__webpack_require__.d(__webpack_exports__, "getConfig", function() { return /* reexport */ getConfig; });
|
|
120
|
+
__webpack_require__.d(__webpack_exports__, "setConfig", function() { return /* reexport */ setConfig; });
|
|
121
|
+
__webpack_require__.d(__webpack_exports__, "setTheme", function() { return /* reexport */ setTheme; });
|
|
122
|
+
__webpack_require__.d(__webpack_exports__, "setSize", function() { return /* reexport */ setSize; });
|
|
123
|
+
__webpack_require__.d(__webpack_exports__, "setPrimaryColor", function() { return /* reexport */ setPrimaryColor; });
|
|
124
|
+
__webpack_require__.d(__webpack_exports__, "getTheme", function() { return /* reexport */ getTheme; });
|
|
125
|
+
__webpack_require__.d(__webpack_exports__, "getSize", function() { return /* reexport */ getSize; });
|
|
126
|
+
__webpack_require__.d(__webpack_exports__, "getPrimaryColor", function() { return /* reexport */ getPrimaryColor; });
|
|
127
|
+
__webpack_require__.d(__webpack_exports__, "resetConfig", function() { return /* reexport */ resetConfig; });
|
|
128
|
+
__webpack_require__.d(__webpack_exports__, "onConfigChange", function() { return /* reexport */ onConfigChange; });
|
|
129
|
+
|
|
130
|
+
// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
|
|
76
131
|
// This file is imported into lib/wc client bundles.
|
|
77
132
|
|
|
78
133
|
if (typeof window !== 'undefined') {
|
|
79
134
|
var currentScript = window.document.currentScript
|
|
80
|
-
if (false)
|
|
81
|
-
{ var getCurrentScript; }
|
|
135
|
+
if (false) { var getCurrentScript; }
|
|
82
136
|
|
|
83
137
|
var src = currentScript && currentScript.src.match(/(.+\/)[^/]+\.js(\?.*)?$/)
|
|
84
138
|
if (src) {
|
|
@@ -87,24 +141,30 @@ if (typeof window !== 'undefined') {
|
|
|
87
141
|
}
|
|
88
142
|
|
|
89
143
|
// Indicate to webpack that this file can be concatenated
|
|
90
|
-
/* harmony default export */
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
var external_Vue_default = /*#__PURE__*/__webpack_require__.n(
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
var
|
|
98
|
-
|
|
99
|
-
|
|
144
|
+
/* harmony default export */ var setPublicPath = (null);
|
|
145
|
+
|
|
146
|
+
// EXTERNAL MODULE: external "Vue"
|
|
147
|
+
var external_Vue_ = __webpack_require__("8bbf");
|
|
148
|
+
var external_Vue_default = /*#__PURE__*/__webpack_require__.n(external_Vue_);
|
|
149
|
+
|
|
150
|
+
// EXTERNAL MODULE: external "ElementUI"
|
|
151
|
+
var external_ElementUI_ = __webpack_require__("5f72");
|
|
152
|
+
var external_ElementUI_default = /*#__PURE__*/__webpack_require__.n(external_ElementUI_);
|
|
153
|
+
|
|
154
|
+
// EXTERNAL MODULE: ./node_modules/element-ui/lib/theme-chalk/index.css
|
|
155
|
+
var theme_chalk = __webpack_require__("0fae");
|
|
156
|
+
|
|
157
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7d921827-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/@vue/cli-service/node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/button/index.vue?vue&type=template&id=0ad9d4c9
|
|
158
|
+
var render = function render(){var _vm=this,_c=_vm._self._c;return _c('el-button',{on:{"click":_vm.handleClick}},[_vm._t("default")],2)
|
|
100
159
|
}
|
|
101
160
|
var staticRenderFns = []
|
|
102
161
|
|
|
103
162
|
|
|
104
|
-
|
|
163
|
+
// CONCATENATED MODULE: ./src/components/button/index.vue?vue&type=template&id=0ad9d4c9
|
|
164
|
+
|
|
165
|
+
// CONCATENATED MODULE: ./node_modules/@vue/cli-service/node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/button/index.vue?vue&type=script&lang=js
|
|
105
166
|
|
|
106
|
-
/* harmony default export */
|
|
107
|
-
props:['text'],
|
|
167
|
+
/* harmony default export */ var buttonvue_type_script_lang_js = ({
|
|
108
168
|
name: 'XtButton',
|
|
109
169
|
methods:{
|
|
110
170
|
handleClick(){
|
|
@@ -113,9 +173,9 @@ var staticRenderFns = []
|
|
|
113
173
|
}
|
|
114
174
|
});
|
|
115
175
|
|
|
116
|
-
|
|
117
|
-
/* harmony default export */
|
|
118
|
-
|
|
176
|
+
// CONCATENATED MODULE: ./src/components/button/index.vue?vue&type=script&lang=js
|
|
177
|
+
/* harmony default export */ var components_buttonvue_type_script_lang_js = (buttonvue_type_script_lang_js);
|
|
178
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
|
119
179
|
/* globals __VUE_SSR_CONTEXT__ */
|
|
120
180
|
|
|
121
181
|
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
|
@@ -213,14 +273,14 @@ function normalizeComponent(
|
|
|
213
273
|
}
|
|
214
274
|
}
|
|
215
275
|
|
|
216
|
-
|
|
276
|
+
// CONCATENATED MODULE: ./src/components/button/index.vue
|
|
217
277
|
|
|
218
278
|
|
|
219
279
|
|
|
220
280
|
|
|
221
281
|
|
|
222
282
|
/* normalize component */
|
|
223
|
-
|
|
283
|
+
|
|
224
284
|
var component = normalizeComponent(
|
|
225
285
|
components_buttonvue_type_script_lang_js,
|
|
226
286
|
render,
|
|
@@ -232,19 +292,21 @@ var component = normalizeComponent(
|
|
|
232
292
|
|
|
233
293
|
)
|
|
234
294
|
|
|
235
|
-
/* harmony default export */
|
|
236
|
-
|
|
295
|
+
/* harmony default export */ var components_button = (component.exports);
|
|
296
|
+
// CONCATENATED MODULE: ./src/components/button/index.js
|
|
237
297
|
|
|
238
|
-
/* harmony default export */
|
|
239
|
-
|
|
298
|
+
/* harmony default export */ var src_components_button = (components_button);
|
|
299
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7d921827-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/@vue/cli-service/node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/input/index.vue?vue&type=template&id=fe9146e4
|
|
240
300
|
var inputvue_type_template_id_fe9146e4_render = function render(){var _vm=this,_c=_vm._self._c;return _c('el-input',{attrs:{"value":_vm.value,"placeholder":_vm.placeholder},on:{"input":function($event){return _vm.$emit('input', $event)}}})
|
|
241
301
|
}
|
|
242
302
|
var inputvue_type_template_id_fe9146e4_staticRenderFns = []
|
|
243
303
|
|
|
244
304
|
|
|
245
|
-
|
|
305
|
+
// CONCATENATED MODULE: ./src/components/input/index.vue?vue&type=template&id=fe9146e4
|
|
306
|
+
|
|
307
|
+
// CONCATENATED MODULE: ./node_modules/@vue/cli-service/node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/input/index.vue?vue&type=script&lang=js
|
|
246
308
|
|
|
247
|
-
/* harmony default export */
|
|
309
|
+
/* harmony default export */ var inputvue_type_script_lang_js = ({
|
|
248
310
|
name: 'XtInput',
|
|
249
311
|
props: {
|
|
250
312
|
value: [String, Number],
|
|
@@ -255,16 +317,16 @@ var inputvue_type_template_id_fe9146e4_staticRenderFns = []
|
|
|
255
317
|
}
|
|
256
318
|
});
|
|
257
319
|
|
|
258
|
-
|
|
259
|
-
/* harmony default export */
|
|
260
|
-
|
|
320
|
+
// CONCATENATED MODULE: ./src/components/input/index.vue?vue&type=script&lang=js
|
|
321
|
+
/* harmony default export */ var components_inputvue_type_script_lang_js = (inputvue_type_script_lang_js);
|
|
322
|
+
// CONCATENATED MODULE: ./src/components/input/index.vue
|
|
261
323
|
|
|
262
324
|
|
|
263
325
|
|
|
264
326
|
|
|
265
327
|
|
|
266
328
|
/* normalize component */
|
|
267
|
-
|
|
329
|
+
|
|
268
330
|
var input_component = normalizeComponent(
|
|
269
331
|
components_inputvue_type_script_lang_js,
|
|
270
332
|
inputvue_type_template_id_fe9146e4_render,
|
|
@@ -276,17 +338,17 @@ var input_component = normalizeComponent(
|
|
|
276
338
|
|
|
277
339
|
)
|
|
278
340
|
|
|
279
|
-
/* harmony default export */
|
|
280
|
-
|
|
341
|
+
/* harmony default export */ var input = (input_component.exports);
|
|
342
|
+
// CONCATENATED MODULE: ./src/components/input/index.js
|
|
281
343
|
|
|
282
|
-
/* harmony default export */
|
|
283
|
-
|
|
344
|
+
/* harmony default export */ var components_input = (input);
|
|
345
|
+
// CONCATENATED MODULE: ./src/index.js
|
|
284
346
|
// 导入 Vue
|
|
285
347
|
|
|
286
348
|
|
|
287
349
|
// 在导入 Element UI 之前,先将 Vue 设置为全局变量
|
|
288
350
|
if (typeof window !== 'undefined') {
|
|
289
|
-
window.Vue =
|
|
351
|
+
window.Vue = external_Vue_default.a
|
|
290
352
|
}
|
|
291
353
|
|
|
292
354
|
// 导入 Element UI 并注册
|
|
@@ -303,14 +365,15 @@ const components = [
|
|
|
303
365
|
components_input
|
|
304
366
|
]
|
|
305
367
|
|
|
368
|
+
|
|
369
|
+
// 注册 Element UI
|
|
370
|
+
external_Vue_default.a.use(external_ElementUI_default.a)
|
|
371
|
+
|
|
306
372
|
// 定义 install 方法,Vue.use() 会自动调用
|
|
307
373
|
const install = function (Vue) {
|
|
308
374
|
if (install.installed) return
|
|
309
375
|
install.installed = true
|
|
310
376
|
|
|
311
|
-
// 注册 Element UI
|
|
312
|
-
Vue.use((external_ElementUI_default()))
|
|
313
|
-
|
|
314
377
|
// 全局注册所有 xt- 组件
|
|
315
378
|
components.forEach(component => {
|
|
316
379
|
Vue.component(component.name, component)
|
|
@@ -323,17 +386,13 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
323
386
|
}
|
|
324
387
|
|
|
325
388
|
// 导出
|
|
326
|
-
/* harmony default export */
|
|
389
|
+
/* harmony default export */ var src_0 = ({
|
|
327
390
|
install,
|
|
328
391
|
// 按需导出组件
|
|
329
392
|
Button: src_components_button,
|
|
330
|
-
Input: components_input
|
|
331
|
-
// 导出 ElementUI 以便用户按需引入
|
|
332
|
-
ElementUI: (external_ElementUI_default())
|
|
393
|
+
Input: components_input
|
|
333
394
|
});
|
|
334
395
|
|
|
335
|
-
// 导出 Vue 和 ElementUI 以便用户使用
|
|
336
|
-
|
|
337
396
|
|
|
338
397
|
// 默认配置
|
|
339
398
|
const defaultConfig = {
|
|
@@ -451,12 +510,13 @@ const onConfigChange = function(listener) {
|
|
|
451
510
|
console.warn('[XtElementUI] onConfigChange 必须传入函数')
|
|
452
511
|
}
|
|
453
512
|
}
|
|
454
|
-
|
|
513
|
+
// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
/* harmony default export */ var entry_lib = __webpack_exports__["default"] = (src_0);
|
|
455
517
|
|
|
456
518
|
|
|
457
|
-
/* harmony default export */ const entry_lib = (src_0);
|
|
458
519
|
|
|
520
|
+
/***/ })
|
|
459
521
|
|
|
460
|
-
|
|
461
|
-
/******/ })()
|
|
462
|
-
;
|
|
522
|
+
/******/ });
|