leisure-core 0.5.63 → 0.5.64
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/index.js +4 -3
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import LeDrag from "./le-libs/js/drag.js";
|
|
2
|
+
import leMixins from "./le-libs/mixins/main.js";
|
|
2
3
|
import {
|
|
3
4
|
parseTime,
|
|
4
5
|
formatMoney,
|
|
@@ -44,9 +45,9 @@ import LeSpan from "./le-span/index.js";
|
|
|
44
45
|
import LeInputAdvanced from "./le-input-advanced/index.js";
|
|
45
46
|
import LeButtonAudit from "./le-button-audit/index.js";
|
|
46
47
|
|
|
47
|
-
|
|
48
48
|
const components = [
|
|
49
49
|
LeArea,
|
|
50
|
+
leMixins,
|
|
50
51
|
LeButton,
|
|
51
52
|
LeButtonQr,
|
|
52
53
|
LeButtonMsg,
|
|
@@ -86,7 +87,6 @@ const components = [
|
|
|
86
87
|
LeUrl,
|
|
87
88
|
LeInputAdvanced,
|
|
88
89
|
LeButtonAudit,
|
|
89
|
-
|
|
90
90
|
];
|
|
91
91
|
|
|
92
92
|
const install = function (Vue) {
|
|
@@ -196,5 +196,6 @@ export default {
|
|
|
196
196
|
LeUrl,
|
|
197
197
|
LeSpan,
|
|
198
198
|
LeInputAdvanced,
|
|
199
|
-
LeButtonAudit
|
|
199
|
+
LeButtonAudit,
|
|
200
|
+
leMixins,
|
|
200
201
|
};
|